From c31df042340ed97b38d6364d4ee5a8d74aafca01 Mon Sep 17 00:00:00 2001 From: Victor Stinner Date: Fri, 12 Jul 2013 00:08:59 +0200 Subject: Issue #18408: Oh, I was wrong: Pickler_New() must call Py_DECREF() to destroy the newly created pickler, and not PyObject_GC_Del(). --- Modules/_pickle.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Modules/_pickle.c b/Modules/_pickle.c index adb642e..8b3438e 100644 --- a/Modules/_pickle.c +++ b/Modules/_pickle.c @@ -782,7 +782,7 @@ _Pickler_New(void) self->max_output_len); if (self->memo == NULL || self->output_buffer == NULL) { - PyObject_GC_Del(self); + Py_DECREF(self); return NULL; } return self; -- cgit v0.12