e492ae50e251c4fcd48bc37b1eaa4821894f1fdb |
|
22-Mar-2016 |
Victor Stinner <victor.stinner@gmail.com> |
tracemalloc now supports domains 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
/external/python/cpython3/Lib/tracemalloc.py
|
f299abdafa0f2b6eb7abae274861b19b361c96bc |
|
13-Apr-2015 |
Brett Cannon <brett@python.org> |
Issue #23731: Implement PEP 488. 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.
/external/python/cpython3/Lib/tracemalloc.py
|
8ce8ff9ac77bdf202bf39bb98203d26cd40d8e04 |
|
10-Mar-2014 |
Victor Stinner <victor.stinner@gmail.com> |
tracemalloc: filter_traces() raises a TypeError if filters is not an iterable
/external/python/cpython3/Lib/tracemalloc.py
|
733e50ad9ee2885323c39080b42716fa5d1fd8c1 |
|
06-Mar-2014 |
Victor Stinner <victor.stinner@gmail.com> |
tracemalloc.py: add comments to show the format of tuples
/external/python/cpython3/Lib/tracemalloc.py
|
d81999a0742f3fc29c2ed9682c38799e6c45c831 |
|
06-Mar-2014 |
Victor Stinner <victor.stinner@gmail.com> |
tracemalloc.py: fix indentation
/external/python/cpython3/Lib/tracemalloc.py
|
23f628de4ab75acde14de9593793e67ec74d851c |
|
16-Feb-2014 |
Victor Stinner <victor.stinner@gmail.com> |
Issue #20616: Add a format() method to tracemalloc.Traceback.
/external/python/cpython3/Lib/tracemalloc.py
|
524be3056e29a86741ba355c759ff304adf6cc3c |
|
01-Feb-2014 |
Victor Stinner <victor.stinner@gmail.com> |
tracemalloc: Fix slicing traces and fix slicing a traceback.
/external/python/cpython3/Lib/tracemalloc.py
|
802a484e2482c72a62dc2daeb9dc8e8ebbf1a000 |
|
26-Nov-2013 |
Victor Stinner <victor.stinner@gmail.com> |
tracemalloc: Fix hash methods of Statistic and StatisticDiff
/external/python/cpython3/Lib/tracemalloc.py
|
8e3708d88ba868eb2d915f0793c0bc0bb5f58b50 |
|
26-Nov-2013 |
Victor Stinner <victor.stinner@gmail.com> |
Issue #18874: allow to call tracemalloc.Snapshot.statistics(cumulative=True) with traceback_limit=1
/external/python/cpython3/Lib/tracemalloc.py
|
ed3b0bca3ef9d7bdbb8bd8e67e60e85f5a336da0 |
|
23-Nov-2013 |
Victor Stinner <victor.stinner@gmail.com> |
Issue #18874: Implement the PEP 454 (tracemalloc)
/external/python/cpython3/Lib/tracemalloc.py
|