diff -Nru /tmp/7wUHw9x4Ux/python-fam-1.1.1/debian/changelog /tmp/ZNwUFO1Br6/python-fam-1.1.1/debian/changelog --- /tmp/7wUHw9x4Ux/python-fam-1.1.1/debian/changelog 2007-05-19 12:23:37.000000000 -0800 +++ /tmp/ZNwUFO1Br6/python-fam-1.1.1/debian/changelog 2007-05-19 12:23:37.000000000 -0800 @@ -1,3 +1,9 @@ +python-fam (1.1.1-2.1ubuntu1) gutsy; urgency=medium + + * Fix a bug in _fam.c to support python2.5 (Closes: #115655) + + -- David Ross Sat, 19 May 2007 12:16:35 -0800 + python-fam (1.1.1-2.1build1) edgy; urgency=low * Rebuild to add support for python2.5. diff -Nru /tmp/7wUHw9x4Ux/python-fam-1.1.1/debian/control /tmp/ZNwUFO1Br6/python-fam-1.1.1/debian/control --- /tmp/7wUHw9x4Ux/python-fam-1.1.1/debian/control 2007-05-19 12:23:37.000000000 -0800 +++ /tmp/ZNwUFO1Br6/python-fam-1.1.1/debian/control 2007-05-19 12:23:37.000000000 -0800 @@ -1,7 +1,8 @@ Source: python-fam Section: python Priority: optional -Maintainer: Martin v. Loewis +Maintainer: Ubuntu MOTU Developers +XSBC-Original-Maintainer: Martin v. Loewis Build-Depends: debhelper (>= 5.0.37.2), python-all-dev (>= 2.3.5-11), python-support (>= 0.3), libfam-dev (>= 2.7.0-7.1) Standards-Version: 3.7.2 diff -Nru /tmp/7wUHw9x4Ux/python-fam-1.1.1/_fam.c /tmp/ZNwUFO1Br6/python-fam-1.1.1/_fam.c --- /tmp/7wUHw9x4Ux/python-fam-1.1.1/_fam.c 2005-04-09 23:48:45.000000000 -0800 +++ /tmp/ZNwUFO1Br6/python-fam-1.1.1/_fam.c 2007-05-19 12:23:37.000000000 -0800 @@ -112,7 +112,7 @@ fprintf(stderr, "_fam: deleting connection object.\n"); #endif _fam_close(self, NULL); - PyMem_DEL(self); + PyObject_FREE(self); } static PyTypeObject _fam_connection_type = { @@ -215,7 +215,7 @@ fprintf(stderr, "_fam: deleting request object.\n"); #endif _fam_cancel_monitor(self, NULL); - PyMem_DEL(self); + PyObject_FREE(self); } static PyTypeObject _fam_request_type = { @@ -357,7 +357,7 @@ fe_obj->fc_obj = NULL; } Py_XDECREF(fe_obj->attr); - PyMem_DEL(fe_obj); + PyObject_FREE(fe_obj); } }