summaryrefslogtreecommitdiff
path: root/Modules/_tracemalloc.c
Commit message (Expand)AuthorAgeFilesLines
* replace PY_SIZE_MAX with SIZE_MAXBenjamin Peterson2016-09-071-2/+2
* replace Py_(u)intptr_t with the c99 standard typesBenjamin Peterson2016-09-061-15/+15
* Issue #27895: Spelling fixes (Contributed by Ville Skytt?).Raymond Hettinger2016-08-301-1/+1
* - make some internal symbols staticdoko2016-05-181-1/+1
* Issue #26778: Fixed "a/an/and" typos in code comment, documentation and errorSerhiy Storchaka2016-04-171-102/+482
|\
| * Issue #15984: Merge PyUnicode doc from 3.5Martin Panter2016-04-151-1/+1
| |\
| * | _tracemalloc: use compact key for tracesVictor Stinner2016-03-231-1/+61
| * | Cleanup hashtable.hVictor Stinner2016-03-231-26/+24
| * | Issue #26588:Victor Stinner2016-03-231-11/+27
| * | Issue #26588:Victor Stinner2016-03-231-1/+1
| * | Issue #26588: Optimize tracemalloc_realloc()Victor Stinner2016-03-231-1/+6
| * | Merge 3.5Victor Stinner2016-03-231-15/+1
| |\ \
| * | | Issue #26588: remove debug traces from _tracemalloc.Victor Stinner2016-03-221-64/+5
| * | | Issue #26588: more debug tracesVictor Stinner2016-03-221-1/+6
| * | | Issue #26588: Don't call tracemalloc_init() at module initilizationVictor Stinner2016-03-221-0/+2
| * | | Issue #26588: one more assertionVictor Stinner2016-03-221-0/+1
| * | | Add assertions on tracemalloc_reentrant_keyVictor Stinner2016-03-221-2/+8
| * | | Issue #26588: more assertionsVictor Stinner2016-03-221-2/+23
| * | | Issue #26588: add debug tracesVictor Stinner2016-03-221-5/+35
| * | | Add C functions _PyTraceMalloc_Track()Victor Stinner2016-03-221-11/+71
| * | | tracemalloc now supports domainsVictor Stinner2016-03-221-53/+214
| * | | Simplify implementation of hashtable.cVictor Stinner2016-03-221-6/+8
| * | | Issue #26588: Fix compilation warning on WindowsVictor Stinner2016-03-211-1/+1
| * | | hashtable.h now supports keys of any sizeVictor Stinner2016-03-211-37/+68
| * | | Ooops, revert changeset ea9efa06c137Victor Stinner2016-03-211-138/+48
| * | | _tracemalloc: add domain to trace keysVictor Stinner2016-03-181-48/+138
| * | | On memory error, dump the memory block tracebackVictor Stinner2016-03-151-11/+56
| * | | Merge 3.5 (_tracemalloc)Victor Stinner2016-03-151-6/+2
| |\ \ \
| | * | | _tracemalloc: filename cannot be NULLVictor Stinner2016-03-151-2/+2
| | * | | Issue #26558: Remove useless check in tracemallocVictor Stinner2016-03-141-4/+0
* | | | | Issue #26778: Fixed "a/an/and" typos in code comment and documentation.Serhiy Storchaka2016-04-171-1/+1
| |_|_|/ |/| | |
* | | | Correct ?an? ? ?a? with ?Unicode?, ?user?, ?UTF?, etcMartin Panter2016-04-151-1/+1
| |_|/ |/| |
* | | Enhance _tracemalloc debug modeVictor Stinner2016-03-231-1/+1
* | | Fix _tracemalloc start/stopVictor Stinner2016-03-231-14/+0
|/ /
* | _tracemalloc: store lineno as unsigned intVictor Stinner2016-03-151-17/+7
|/
* Merge 3.4 (tracemalloc typo)Victor Stinner2015-03-181-26/+60
|\
| * Removed duplicated words in in comments and docs.Serhiy Storchaka2014-12-011-26/+60
| |\
| | * Issue #22156: simplify _tracemalloc.c, use an int for the MAX_NFRAME constantVictor Stinner2014-08-161-6/+6
| | * Issue #22156: Fix some "comparison between signed and unsigned integers"Victor Stinner2014-08-161-5/+5
| | * Issue #21233: Rename the C structure "PyMemAllocator" to "PyMemAllocatorEx" toVictor Stinner2014-06-021-11/+11
| | * Issue #21639: Fix a division by zero in tracemalloc on calloc(0, 0). TheVictor Stinner2014-06-021-1/+1
| | |\
| | * | Issue #21490: Add new C macros: Py_ABS() and Py_STRINGIFY()Victor Stinner2014-05-141-3/+0
| | * | Issue #21233: Add new C functions: PyMem_RawCalloc(), PyMem_Calloc(),Victor Stinner2014-05-021-10/+47
| | |/
* | | _tracemalloc.c: Fix typoVictor Stinner2015-03-181-1/+1
|/ /
* | Removed duplicated words in in comments and docs.Serhiy Storchaka2014-12-011-1/+1
|/
* 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