diff options
Diffstat (limited to 'python')
-rw-r--r-- | python/rpmds-py.c | 9 | ||||
-rw-r--r-- | python/rpmfi-py.c | 9 | ||||
-rw-r--r-- | python/rpmps-py.c | 9 | ||||
-rw-r--r-- | python/rpmts-py.c | 16 |
4 files changed, 4 insertions, 39 deletions
diff --git a/python/rpmds-py.c b/python/rpmds-py.c index 5ac4dda09..8750dda0f 100644 --- a/python/rpmds-py.c +++ b/python/rpmds-py.c @@ -416,13 +416,6 @@ static int rpmds_init(rpmdsObject * s, PyObject *args, PyObject *kwds) return 0; } -static void rpmds_free(rpmdsObject * s) -{ - s->ds = rpmdsFree(s->ds); - - PyObject_Del((PyObject *)s); -} - static PyObject * rpmds_new(PyTypeObject * subtype, PyObject *args, PyObject *kwds) { hdrObject * ho = NULL; @@ -485,7 +478,7 @@ PyTypeObject rpmds_Type = { (initproc) rpmds_init, /* tp_init */ 0, /* tp_alloc */ (newfunc) rpmds_new, /* tp_new */ - (freefunc) rpmds_free, /* tp_free */ + 0, /* tp_free */ 0, /* tp_is_gc */ }; diff --git a/python/rpmfi-py.c b/python/rpmfi-py.c index 860e06930..3ce3e2d84 100644 --- a/python/rpmfi-py.c +++ b/python/rpmfi-py.c @@ -294,13 +294,6 @@ static int rpmfi_init(rpmfiObject * s, PyObject *args, PyObject *kwds) return 0; } -static void rpmfi_free(rpmfiObject * s) -{ - s->fi = rpmfiFree(s->fi); - - PyObject_Del((PyObject *)s); -} - static PyObject * rpmfi_new(PyTypeObject * subtype, PyObject *args, PyObject *kwds) { hdrObject * ho = NULL; @@ -363,7 +356,7 @@ PyTypeObject rpmfi_Type = { (initproc) rpmfi_init, /* tp_init */ 0, /* tp_alloc */ (newfunc) rpmfi_new, /* tp_new */ - (freefunc) rpmfi_free, /* tp_free */ + 0, /* tp_free */ 0, /* tp_is_gc */ }; diff --git a/python/rpmps-py.c b/python/rpmps-py.c index c9f6050fa..b343ee394 100644 --- a/python/rpmps-py.c +++ b/python/rpmps-py.c @@ -107,13 +107,6 @@ static PyMappingMethods rpmps_as_mapping = { (binaryfunc) rpmps_subscript, /* mp_subscript */ }; -static void rpmps_free(rpmpsObject * s) -{ - s->ps = rpmpsFree(s->ps); - - PyObject_Del((PyObject *)s); -} - static PyObject * rpmps_new(PyTypeObject * subtype, PyObject *args, PyObject *kwds) { rpmps ps = rpmpsCreate(); @@ -164,7 +157,7 @@ PyTypeObject rpmps_Type = { 0, /* tp_init */ 0, /* tp_alloc */ (newfunc) rpmps_new, /* tp_new */ - (freefunc) rpmps_free, /* tp_free */ + 0, /* tp_free */ 0, /* tp_is_gc */ }; diff --git a/python/rpmts-py.c b/python/rpmts-py.c index cd5471c9b..3cb138f03 100644 --- a/python/rpmts-py.c +++ b/python/rpmts-py.c @@ -1013,20 +1013,6 @@ static int rpmts_setattro(PyObject * o, PyObject * n, PyObject * v) return 0; } -static void rpmts_free(rpmtsObject * s) -{ - s->ts = rpmtsFree(s->ts); - - if (s->scriptFd) - Fclose(s->scriptFd); - - /* this will free the keyList, and decrement the ref count of all - the items on the list as well :-) */ - Py_DECREF(s->keyList); - - PyObject_Del((PyObject *)s); -} - static PyObject * rpmts_new(PyTypeObject * subtype, PyObject *args, PyObject *kwds) { char * rootDir = "/"; @@ -1091,7 +1077,7 @@ PyTypeObject rpmts_Type = { 0, /* tp_init */ 0, /* tp_alloc */ (newfunc) rpmts_new, /* tp_new */ - (freefunc) rpmts_free, /* tp_free */ + 0, /* tp_free */ 0, /* tp_is_gc */ }; |