Changeset 1281
- Timestamp:
- 05/29/09 10:09:26 (9 months ago)
- Files:
-
- 1 modified
-
Rtree/trunk/rtree/wrapper.cc (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
Rtree/trunk/rtree/wrapper.cc
r1275 r1281 50 50 void visitData(const IData & d) 51 51 { 52 PyList_Append(ids, PyLong_FromLongLong(d.getIdentifier())); 52 PyObject* ob = PyLong_FromLongLong(d.getIdentifier()); 53 PyList_Append(ids, ob); 54 Py_DECREF(ob); 53 55 } 54 56
