| Commit message (Expand) | Author | Age | Files | Lines |
* | Issue #27895: Spelling fixes (Contributed by Ville Skyttä). | Martin Panter | 2016-09-07 | 1 | -1/+1 |
|
|
* | Issue #26778: Fixed "a/an/and" typos in code comment and documentation. | Serhiy Storchaka | 2016-04-17 | 1 | -1/+1 |
|
|
* | Correct “an” → “a” with “Unicode”, “user”, “UTF”, etc | Martin Panter | 2016-04-15 | 1 | -1/+1 |
|
|
* | Enhance _tracemalloc debug mode | Victor Stinner | 2016-03-22 | 1 | -1/+1 |
|
|
* | Fix _tracemalloc start/stop | Victor Stinner | 2016-03-22 | 1 | -14/+0 |
|
|
* | _tracemalloc: store lineno as unsigned int | Victor Stinner | 2016-03-15 | 1 | -17/+7 |
|
|
* | Merge 3.4 (tracemalloc typo) | Victor Stinner | 2015-03-18 | 1 | -1/+1 |
|\ |
|
| * | _tracemalloc.c: Fix typo | Victor Stinner | 2015-03-18 | 1 | -1/+1 |
|
|
* | | Removed duplicated words in in comments and docs. | Serhiy Storchaka | 2014-12-01 | 1 | -1/+1 |
|\ \
| |/ |
|
| * | Removed duplicated words in in comments and docs. | Serhiy Storchaka | 2014-12-01 | 1 | -1/+1 |
|
|
* | | Issue #22156: simplify _tracemalloc.c, use an int for the MAX_NFRAME constant | Victor Stinner | 2014-08-16 | 1 | -6/+6 |
|
|
* | | Issue #22156: Fix some "comparison between signed and unsigned integers" | Victor Stinner | 2014-08-15 | 1 | -5/+5 |
|
|
* | | Issue #21233: Rename the C structure "PyMemAllocator" to "PyMemAllocatorEx" to | Victor Stinner | 2014-06-02 | 1 | -11/+11 |
|
|
* | | Issue #21639: Fix a division by zero in tracemalloc on calloc(0, 0). The | Victor Stinner | 2014-06-02 | 1 | -1/+1 |
|\ \
| |/ |
|
* | | Issue #21490: Add new C macros: Py_ABS() and Py_STRINGIFY() | Victor Stinner | 2014-05-14 | 1 | -3/+0 |
|
|
* | | Issue #21233: Add new C functions: PyMem_RawCalloc(), PyMem_Calloc(), | Victor Stinner | 2014-05-02 | 1 | -10/+47 |
|/ |
|
* | Issue #21036: Fix typo in macro name | Victor Stinner | 2014-03-24 | 1 | -1/+1 |
|
|
* | Issue #20354: Fix alignment issue in the tracemalloc module on 64-bit | Victor Stinner | 2014-02-01 | 1 | -1/+2 |
|
|
* | tracemalloc: fix usage of strtol(), value can be LONG_MIN or LONG_MAX on ERANGE | Victor Stinner | 2013-12-16 | 1 | -1/+2 |
|
|
* | tracemalloc: only use unsigned types to compute hash | Victor Stinner | 2013-12-16 | 1 | -5/+4 |
|
|
* | Issue #19787: PyThread_set_key_value() now always set the value | Victor Stinner | 2013-12-13 | 1 | -6/+3 |
|
|
* | Backout changeset 46393019b650 | Victor Stinner | 2013-12-13 | 1 | -3/+6 |
|
|
* | Close #19787: PyThread_set_key_value() now always set the value. In Python 3.3, | Victor Stinner | 2013-12-13 | 1 | -6/+3 |
|
|
* | Close #19741: tracemalloc_realloc() does not release the table lock anymore | Victor Stinner | 2013-12-04 | 1 | -10/+26 |
|
|
* | Close #19757: Cleanup tracemalloc, move | Victor Stinner | 2013-12-04 | 1 | -98/+129 |
|
|
* | Closes #19831: Stop tracemalloc later at Python shutdown to be able to use | Victor Stinner | 2013-12-01 | 1 | -67/+10 |
|
|
* | Closes #19786: tracemalloc, remove the arbitrary limit of 100 frames | Victor Stinner | 2013-11-27 | 1 | -21/+34 |
|
|
* | Close #19798: replace "maximum" term with "peak" in get_traced_memory() | Victor Stinner | 2013-11-27 | 1 | -12/+12 |
|
|
* | tracemalloc: fix get_traced_memory() docstring for result type | Victor Stinner | 2013-11-26 | 1 | -1/+1 |
|
|
* | Issue #18874: Fix typo | Victor Stinner | 2013-11-26 | 1 | -1/+1 |
|
|
* | Issue #18874: make it more explicit than set_reentrant() only accept 0 or 1 | Victor Stinner | 2013-11-26 | 1 | -0/+1 |
|
|
* | Issue #18874: tracemalloc: Comment the trace_t structure | Victor Stinner | 2013-11-26 | 1 | -0/+4 |
|
|
* | Issue #18874: tracemalloc: explain the purpose of get_traces.tracebacks in a ... | Victor Stinner | 2013-11-25 | 1 | -0/+2 |
|
|
* | Close #19762: Fix name of _get_traces() and _get_object_traceback() function | Victor Stinner | 2013-11-25 | 1 | -2/+2 |
|
|
* | Issue #19741: cleanup tracemalloc_realloc() | Victor Stinner | 2013-11-24 | 1 | -8/+15 |
|
|
* | Issue #19741: tracemalloc: report tracemalloc_log_alloc() failure to the caller | Victor Stinner | 2013-11-24 | 1 | -18/+29 |
|
|
* | Issue #19741: fix tracemalloc_log_alloc(), handle _Py_HASHTABLE_SET() failure | Victor Stinner | 2013-11-24 | 1 | -7/+16 |
|
|
* | Issue #18874: Remove tracemalloc.set_traceback_limit() | Victor Stinner | 2013-11-23 | 1 | -31/+18 |
|
|
* | Issue #18874: Implement the PEP 454 (tracemalloc) | Victor Stinner | 2013-11-23 | 1 | -0/+1407 |
|
|