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 vstinner
Recipients berker.peksag, izbyshev, serhiy.storchaka, vstinner
Date 2018-10-28.15:31:18
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1540740678.34.0.788709270274.issue35090@psf.upfronthosting.co.za>
In-reply-to
Content
Check other wrappers to memory allocators:

* zlib: "zst.zalloc = PyZlib_Malloc" which calls PyMem_RawMalloc
* _lzma: "self->alloc.alloc = PyLzma_Malloc" which calls PyMem_RawMalloc
* _bz2: "bzalloc = BZ2_Malloc" which calls PyMem_RawMalloc()

https://bugs.python.org/issue35056#msg328533
History
Date User Action Args
2018-10-28 15:31:18vstinnersetrecipients: + vstinner, berker.peksag, serhiy.storchaka, izbyshev
2018-10-28 15:31:18vstinnersetmessageid: <1540740678.34.0.788709270274.issue35090@psf.upfronthosting.co.za>
2018-10-28 15:31:18vstinnerlinkissue35090 messages
2018-10-28 15:31:18vstinnercreate