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 amaury.forgeotdarc, belopolsky, rhettinger, vstinner
Date 2013-10-07.00:51:05
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1381107065.65.0.721021916467.issue18874@psf.upfronthosting.co.za>
In-reply-to
Content
ec121a72e848.patch:

- ignore changes on Lib/test/support/__init__.py: it's my own fix for issue #18948 which will be fixed differently
- ignore changes on Lib/test/regrtest.py: they should not be commited, it's just a convinient way to test tracemalloc (python -X tracemalloc -m test -r)
- changes on Modules/readline.c: this is the fix for the issue #16742
- Objects/codeobject.c: calling PyUnicode_READY(filename) in PyCode_New() is useful on Windows in debug mode, the filename may not be ready, whereas tracemalloc requires a ready Unicode string. This change can probably be fixed in default independently
- Objects/obmalloc.c: changes on _PyMem_Debug  and changes replacing PyMem_Malloc() with PyMem_RawMalloc() are a try to reuse pymalloc allocator for PyMem_Malloc(). This should be discussed independently

Sorry for all these unrelated change, I will try to cleanup the repository in the next patch.
History
Date User Action Args
2013-10-07 00:51:05vstinnersetrecipients: + vstinner, rhettinger, amaury.forgeotdarc, belopolsky
2013-10-07 00:51:05vstinnersetmessageid: <1381107065.65.0.721021916467.issue18874@psf.upfronthosting.co.za>
2013-10-07 00:51:05vstinnerlinkissue18874 messages
2013-10-07 00:51:05vstinnercreate