summaryrefslogtreecommitdiff
path: root/Modules/_tracemalloc.c
Commit message (Expand)AuthorAgeFilesLines
* Issue #21036: Fix typo in macro nameVictor Stinner2014-03-241-1/+1
* Issue #20354: Fix alignment issue in the tracemalloc module on 64-bitVictor Stinner2014-02-011-1/+2
* tracemalloc: fix usage of strtol(), value can be LONG_MIN or LONG_MAX on ERANGEVictor Stinner2013-12-161-1/+2
* tracemalloc: only use unsigned types to compute hashVictor Stinner2013-12-161-5/+4
* Issue #19787: PyThread_set_key_value() now always set the valueVictor Stinner2013-12-131-6/+3
* Backout changeset 46393019b650Victor Stinner2013-12-131-3/+6
* Close #19787: PyThread_set_key_value() now always set the value. In Python 3.3,Victor Stinner2013-12-131-6/+3
* Close #19741: tracemalloc_realloc() does not release the table lock anymoreVictor Stinner2013-12-041-10/+26
* Close #19757: Cleanup tracemalloc, moveVictor Stinner2013-12-041-98/+129
* Closes #19831: Stop tracemalloc later at Python shutdown to be able to useVictor Stinner2013-12-011-67/+10
* Closes #19786: tracemalloc, remove the arbitrary limit of 100 framesVictor Stinner2013-11-271-21/+34
* Close #19798: replace "maximum" term with "peak" in get_traced_memory()Victor Stinner2013-11-271-12/+12
* tracemalloc: fix get_traced_memory() docstring for result typeVictor Stinner2013-11-261-1/+1
* Issue #18874: Fix typoVictor Stinner2013-11-261-1/+1
* Issue #18874: make it more explicit than set_reentrant() only accept 0 or 1Victor Stinner2013-11-261-0/+1
* Issue #18874: tracemalloc: Comment the trace_t structureVictor Stinner2013-11-261-0/+4
* Issue #18874: tracemalloc: explain the purpose of get_traces.tracebacks in a ...Victor Stinner2013-11-261-0/+2
* Close #19762: Fix name of _get_traces() and _get_object_traceback() functionVictor Stinner2013-11-251-2/+2
* Issue #19741: cleanup tracemalloc_realloc()Victor Stinner2013-11-241-8/+15
* Issue #19741: tracemalloc: report tracemalloc_log_alloc() failure to the callerVictor Stinner2013-11-241-18/+29
* Issue #19741: fix tracemalloc_log_alloc(), handle _Py_HASHTABLE_SET() failureVictor Stinner2013-11-241-7/+16
* Issue #18874: Remove tracemalloc.set_traceback_limit()Victor Stinner2013-11-231-31/+18
* Issue #18874: Implement the PEP 454 (tracemalloc)Victor Stinner2013-11-231-0/+1407