[New-bugs-announce] [issue18372] _Pickler_New() doesn't call PyObject_GC_Track(self)

Christian Heimes report at bugs.python.org
Sat Jul 6 00:53:10 CEST 2013


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 <report at bugs.python.org>
<http://bugs.python.org/issue18372>
_______________________________________


More information about the New-bugs-announce mailing list