New submission from Christian Heimes:

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.

----------
components: Extension Modules
messages: 192369
nosy: christian.heimes
priority: normal
severity: normal
stage: needs patch
status: open
title: _Pickler_New() doesn't call PyObject_GC_Track(self)
type: behavior

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue18372>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to