This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author christian.heimes
Recipients christian.heimes
Date 2013-07-05.22:53:10
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1373064790.68.0.920175606727.issue18372@psf.upfronthosting.co.za>
In-reply-to
Content
In _Pickler_New() PicklerObject is allocated with 

   self = PyObject_GC_New(PicklerObject, &Pickler_Type);

but PyObject_GC_Track(self) is never called, same for _Unpickler_New(). I think it's a bug.
History
Date User Action Args
2013-07-05 22:53:10christian.heimessetrecipients: + christian.heimes
2013-07-05 22:53:10christian.heimessetmessageid: <1373064790.68.0.920175606727.issue18372@psf.upfronthosting.co.za>
2013-07-05 22:53:10christian.heimeslinkissue18372 messages
2013-07-05 22:53:10christian.heimescreate