Message199123
| 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. |
|