summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_tracemalloc.py
Commit message (Collapse)AuthorAgeFilesLines
* tracemalloc: filter_traces() raises a TypeError if filters is not an iterableVictor Stinner2014-03-101-0/+2
|
* Issue #20616: Add a format() method to tracemalloc.Traceback.Victor Stinner2014-02-161-0/+20
|
* tracemalloc: Fix slicing traces and fix slicing a traceback.Victor Stinner2014-02-011-2/+8
|
* Closes #19786: tracemalloc, remove the arbitrary limit of 100 framesVictor Stinner2013-11-271-6/+6
| | | | | | | | The limit is now 178,956,969 on 64 bit (it is greater on 32 bit because structures are smaller). Use int instead of Py_ssize_t to store the number of frames to have smaller traceback_t objects.
* Close #19798: replace "maximum" term with "peak" in get_traced_memory()Victor Stinner2013-11-271-7/+7
| | | | documentation. Use also the term "current" for the current size.
* Cleanup test_tracemalloc.py. Patch written by Vajrasky Kok.Victor Stinner2013-11-251-4/+2
|
* Issue #18874: Remove tracemalloc.set_traceback_limit()Victor Stinner2013-11-231-12/+9
| | | | tracemalloc.start() now has an option nframe parameter
* Issue #18874: Implement the PEP 454 (tracemalloc)Victor Stinner2013-11-231-0/+797