summaryrefslogtreecommitdiffstats
path: root/Objects
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2016-04-16 22:12:37 (GMT)
committerBenjamin Peterson <benjamin@python.org>2016-04-16 22:12:37 (GMT)
commita4ed2daea3ac4a53759d8680d789c2e1be6591f9 (patch)
tree85fab4f6fd809acc8569b6944940c58c70e80d62 /Objects
parent50074f192d6b631d054739e0034cd7ea6aa8bf5b (diff)
parentb0c04cb98c4d59f0e9a046b78cdd83c465d3fba8 (diff)
downloadcpython-a4ed2daea3ac4a53759d8680d789c2e1be6591f9.zip
cpython-a4ed2daea3ac4a53759d8680d789c2e1be6591f9.tar.gz
cpython-a4ed2daea3ac4a53759d8680d789c2e1be6591f9.tar.bz2
merge 3.5
Diffstat (limited to 'Objects')
-rw-r--r--Objects/sliceobject.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/sliceobject.c b/Objects/sliceobject.c
index bf5eb3a..2f32355 100644
--- a/Objects/sliceobject.c
+++ b/Objects/sliceobject.c
@@ -102,7 +102,7 @@ void PySlice_Fini(void)
PySliceObject *obj = slice_cache;
if (obj != NULL) {
slice_cache = NULL;
- PyObject_Del(obj);
+ PyObject_GC_Del(obj);
}
}