Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | tracemalloc now supports domains | Victor Stinner | 2016-03-22 | 1 | -18/+55 |
| | | | | | | | | | | | | | | | | | Issue #26588: * The _tracemalloc now supports tracing memory allocations of multiple address spaces (domains). * Add domain parameter to tracemalloc_add_trace() and tracemalloc_remove_trace(). * tracemalloc_add_trace() now starts by removing the previous trace, if any. * _tracemalloc._get_traces() now returns a list of (domain, size, traceback_frames): the domain is new. * Add tracemalloc.DomainFilter * tracemalloc.Filter: add an optional domain parameter to the constructor and a domain attribute * Sublte change: use Py_uintptr_t rather than void* in the traces key. * Add tracemalloc_config.use_domain, currently hardcoded to 1 | ||||
* | Issue #23731: Implement PEP 488. | Brett Cannon | 2015-04-13 | 1 | -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 iterable | Victor Stinner | 2014-03-10 | 1 | -1/+4 |
| | |||||
* | tracemalloc.py: add comments to show the format of tuples | Victor Stinner | 2014-03-06 | 1 | -0/+8 |
| | |||||
* | tracemalloc.py: fix indentation | Victor Stinner | 2014-03-06 | 1 | -4/+4 |
| | |||||
* | Issue #20616: Add a format() method to tracemalloc.Traceback. | Victor Stinner | 2014-02-16 | 1 | -0/+13 |
| | |||||
* | tracemalloc: Fix slicing traces and fix slicing a traceback. | Victor Stinner | 2014-02-01 | 1 | -4/+8 |
| | |||||
* | tracemalloc: Fix hash methods of Statistic and StatisticDiff | Victor Stinner | 2013-11-26 | 1 | -4/+3 |
| | |||||
* | Issue #18874: allow to call tracemalloc.Snapshot.statistics(cumulative=True) | Victor Stinner | 2013-11-25 | 1 | -4/+0 |
| | | | | with traceback_limit=1 | ||||
* | Issue #18874: Implement the PEP 454 (tracemalloc) | Victor Stinner | 2013-11-23 | 1 | -0/+464 |