summaryrefslogtreecommitdiffstats
path: root/Modules/_randommodule.c
diff options
context:
space:
mode:
authorNeal Norwitz <nnorwitz@gmail.com>2007-08-19 22:48:23 (GMT)
committerNeal Norwitz <nnorwitz@gmail.com>2007-08-19 22:48:23 (GMT)
commit30d1c51ac97a93f68015a0c646bd130140b69a98 (patch)
tree9e47d4b382382a75c74ea85c1e1325216678a7c0 /Modules/_randommodule.c
parent666bb419cb28b799794350abdc9d5a15e1dfc5dc (diff)
downloadcpython-30d1c51ac97a93f68015a0c646bd130140b69a98.zip
cpython-30d1c51ac97a93f68015a0c646bd130140b69a98.tar.gz
cpython-30d1c51ac97a93f68015a0c646bd130140b69a98.tar.bz2
Remove _PyObject_Del
Diffstat (limited to 'Modules/_randommodule.c')
-rw-r--r--Modules/_randommodule.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/_randommodule.c b/Modules/_randommodule.c
index 25adc2e..95b7ade 100644
--- a/Modules/_randommodule.c
+++ b/Modules/_randommodule.c
@@ -557,7 +557,7 @@ static PyTypeObject Random_Type = {
0, /*tp_init*/
0, /*tp_alloc*/
random_new, /*tp_new*/
- _PyObject_Del, /*tp_free*/
+ PyObject_Free, /*tp_free*/
0, /*tp_is_gc*/
};