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 eelizondo
Recipients eelizondo
Date 2019-01-23.20:35:52
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1548275752.94.0.463880453345.issue35810@roundup.psfhosted.org>
In-reply-to
Content
Heap-allocated Types initializing instances through `PyObject_{,GC}_New{Var}` will *NOT* not have their refcnt increased. This was totally fine under the assumption that static types are immortal. However, heap-allocated types MUST participate in refcounting. Furthermore, their deallocation routine should also make sure to decrease their refcnt to provide the incref/decref pair.
History
Date User Action Args
2019-01-23 20:35:56eelizondosetrecipients: + eelizondo
2019-01-23 20:35:52eelizondosetmessageid: <1548275752.94.0.463880453345.issue35810@roundup.psfhosted.org>
2019-01-23 20:35:52eelizondolinkissue35810 messages
2019-01-23 20:35:52eelizondocreate