summaryrefslogtreecommitdiffstats
path: root/Lib/tracemalloc.py
Commit message (Collapse)AuthorAgeFilesLines
* Issue #23731: Implement PEP 488.Brett Cannon2015-04-131-1/+1
| | | | | | The concept of .pyo files no longer exists. Now .pyc files have an optional `opt-` tag which specifies if any extra optimizations beyond the peepholer were applied.
* tracemalloc: filter_traces() raises a TypeError if filters is not an iterableVictor Stinner2014-03-101-1/+4
|
* tracemalloc.py: add comments to show the format of tuplesVictor Stinner2014-03-061-0/+8
|
* tracemalloc.py: fix indentationVictor Stinner2014-03-061-4/+4
|
* Issue #20616: Add a format() method to tracemalloc.Traceback.Victor Stinner2014-02-161-0/+13
|
* tracemalloc: Fix slicing traces and fix slicing a traceback.Victor Stinner2014-02-011-4/+8
|
* tracemalloc: Fix hash methods of Statistic and StatisticDiffVictor Stinner2013-11-261-4/+3
|
* Issue #18874: allow to call tracemalloc.Snapshot.statistics(cumulative=True)Victor Stinner2013-11-251-4/+0
| | | | with traceback_limit=1
* Issue #18874: Implement the PEP 454 (tracemalloc)Victor Stinner2013-11-231-0/+464