1. b2e5794 bpo-31338 (#3374) by Barry Warsaw · 7 years ago
  2. a6a4dc8 bpo-31370: Remove support for threads-less builds (#3385) by Antoine Pitrou · 7 years ago
  3. 3924377 bpo-31018: Switch to #pragma pack from __declspec(align) (#2848) by Segev Finer · 7 years ago
  4. 4ed5ad7 bpo-30961: Fix decrementing a borrowed reference in tracemalloc. (#2747) by Xiang Zhang · 7 years ago
  5. 5ea4c06 bpo-30054: Expose tracemalloc C API (#1236) by Victor Stinner · 7 years ago
  6. 9735384 Issue #20186: Regenerated Argument Clinic. by Serhiy Storchaka · 8 years ago
  7. b451f91 Issue #20186: Converted the tracemalloc module to Argument Clinic. by Serhiy Storchaka · 8 years ago
  8. 2f8bfef replace PY_SIZE_MAX with SIZE_MAX by Benjamin Peterson · 8 years ago
  9. ca47063 replace Py_(u)intptr_t with the c99 standard types by Benjamin Peterson · 8 years ago
  10. 15f44ab Issue #27895: Spelling fixes (Contributed by Ville Skyttä). by Raymond Hettinger · 8 years ago
  11. bc73150 - make some internal symbols static by doko@ubuntu.com · 8 years ago
  12. b6a9c97 Issue #26778: Fixed "a/an/and" typos in code comment, documentation and error by Serhiy Storchaka · 8 years ago
  13. 6a7b3a7 Issue #26778: Fixed "a/an/and" typos in code comment and documentation. by Serhiy Storchaka · 8 years ago
  14. cda8094 Issue #15984: Merge PyUnicode doc from 3.5 by Martin Panter · 8 years ago
  15. 6245cb3 Correct “an” → “a” with “Unicode”, “user”, “UTF”, etc by Martin Panter · 8 years ago
  16. 5e14a38 _tracemalloc: use compact key for traces by Victor Stinner · 8 years ago
  17. 5dacbd4 Cleanup hashtable.h by Victor Stinner · 8 years ago
  18. ca79ccd Issue #26588: by Victor Stinner · 8 years ago
  19. e8c6b2f Issue #26588: by Victor Stinner · 8 years ago
  20. 42bcf37 Issue #26588: Optimize tracemalloc_realloc() by Victor Stinner · 8 years ago
  21. 35b0fd7 Merge 3.5 by Victor Stinner · 8 years ago
  22. d5871e6 Enhance _tracemalloc debug mode by Victor Stinner · 8 years ago
  23. 2f49e09 Fix _tracemalloc start/stop by Victor Stinner · 8 years ago
  24. f9a7115 Issue #26588: remove debug traces from _tracemalloc. by Victor Stinner · 8 years ago
  25. eddb074 Issue #26588: more debug traces by Victor Stinner · 8 years ago
  26. b8d9272 Issue #26588: Don't call tracemalloc_init() at module initilization by Victor Stinner · 8 years ago
  27. e31e35d Issue #26588: one more assertion by Victor Stinner · 8 years ago
  28. 4a06647 Add assertions on tracemalloc_reentrant_key by Victor Stinner · 8 years ago
  29. 0cfc058 Issue #26588: more assertions by Victor Stinner · 8 years ago
  30. 84aab09 Issue #26588: add debug traces by Victor Stinner · 8 years ago
  31. 10b73e1 Add C functions _PyTraceMalloc_Track() by Victor Stinner · 8 years ago
  32. e492ae5 tracemalloc now supports domains by Victor Stinner · 8 years ago
  33. c955387 Simplify implementation of hashtable.c by Victor Stinner · 8 years ago
  34. b32a7ed Issue #26588: Fix compilation warning on Windows by Victor Stinner · 8 years ago
  35. 285cf0a hashtable.h now supports keys of any size by Victor Stinner · 8 years ago
  36. 322bc12 Ooops, revert changeset ea9efa06c137 by Victor Stinner · 8 years ago
  37. 51b846c _tracemalloc: add domain to trace keys by Victor Stinner · 8 years ago
  38. 0611c26 On memory error, dump the memory block traceback by Victor Stinner · 8 years ago
  39. af584a0 Merge 3.5 (_tracemalloc) by Victor Stinner · 8 years ago
  40. 9528334 _tracemalloc: store lineno as unsigned int by Victor Stinner · 8 years ago
  41. 7105e9f _tracemalloc: filename cannot be NULL by Victor Stinner · 8 years ago
  42. d222653 Issue #26558: Remove useless check in tracemalloc by Victor Stinner · 8 years ago
  43. cb7e5f6 Merge 3.4 (tracemalloc typo) by Victor Stinner · 9 years ago
  44. 444f124 _tracemalloc.c: Fix typo by Victor Stinner · 9 years ago
  45. 56a6d85 Removed duplicated words in in comments and docs. by Serhiy Storchaka · 10 years ago
  46. 83000a4 Removed duplicated words in in comments and docs. by Serhiy Storchaka · 10 years ago
  47. 52aee85 Issue #22156: simplify _tracemalloc.c, use an int for the MAX_NFRAME constant by Victor Stinner · 10 years ago
  48. 706768c Issue #22156: Fix some "comparison between signed and unsigned integers" by Victor Stinner · 10 years ago
  49. d8f0d92 Issue #21233: Rename the C structure "PyMemAllocator" to "PyMemAllocatorEx" to by Victor Stinner · 10 years ago
  50. aa0e7af Issue #21639: Fix a division by zero in tracemalloc on calloc(0, 0). The by Victor Stinner · 10 years ago
  51. 45e8e2f Issue #21490: Add new C macros: Py_ABS() and Py_STRINGIFY() by Victor Stinner · 10 years ago
  52. db067af Issue #21233: Add new C functions: PyMem_RawCalloc(), PyMem_Calloc(), by Victor Stinner · 10 years ago
  53. d9a7352 Issue #21036: Fix typo in macro name by Victor Stinner · 10 years ago
  54. dd382ef Issue #20354: Fix alignment issue in the tracemalloc module on 64-bit by Victor Stinner · 11 years ago
  55. 711e27c tracemalloc: fix usage of strtol(), value can be LONG_MIN or LONG_MAX on ERANGE by Victor Stinner · 11 years ago
  56. 4d8c29c tracemalloc: only use unsigned types to compute hash by Victor Stinner · 11 years ago
  57. 590cebe Issue #19787: PyThread_set_key_value() now always set the value by Victor Stinner · 11 years ago
  58. 441adb8 Backout changeset 46393019b650 by Victor Stinner · 11 years ago
  59. cd0cb8c Close #19787: PyThread_set_key_value() now always set the value. In Python 3.3, by Victor Stinner · 11 years ago
  60. 88c2987 Close #19741: tracemalloc_realloc() does not release the table lock anymore by Victor Stinner · 11 years ago
  61. 1511680 Close #19757: Cleanup tracemalloc, move by Victor Stinner · 11 years ago
  62. be0708f Closes #19831: Stop tracemalloc later at Python shutdown to be able to use by Victor Stinner · 11 years ago
  63. f28ce60 Closes #19786: tracemalloc, remove the arbitrary limit of 100 frames by Victor Stinner · 11 years ago
  64. 3c0481d Close #19798: replace "maximum" term with "peak" in get_traced_memory() by Victor Stinner · 11 years ago
  65. 59463d8 tracemalloc: fix get_traced_memory() docstring for result type by Victor Stinner · 11 years ago
  66. 4dc7420 Issue #18874: Fix typo by Victor Stinner · 11 years ago
  67. 2ead3d2 Issue #18874: make it more explicit than set_reentrant() only accept 0 or 1 by Victor Stinner · 11 years ago
  68. 7a5be14 Issue #18874: tracemalloc: Comment the trace_t structure by Victor Stinner · 11 years ago
  69. de2f132 Issue #18874: tracemalloc: explain the purpose of get_traces.tracebacks in a comment by Victor Stinner · 11 years ago
  70. 4fbefdb Close #19762: Fix name of _get_traces() and _get_object_traceback() function by Victor Stinner · 11 years ago
  71. 08facd2 Issue #19741: cleanup tracemalloc_realloc() by Victor Stinner · 11 years ago
  72. 5296867 Issue #19741: tracemalloc: report tracemalloc_log_alloc() failure to the caller by Victor Stinner · 11 years ago
  73. d606ba7 Issue #19741: fix tracemalloc_log_alloc(), handle _Py_HASHTABLE_SET() failure by Victor Stinner · 11 years ago
  74. 3728d6c Issue #18874: Remove tracemalloc.set_traceback_limit() by Victor Stinner · 11 years ago
  75. ed3b0bc Issue #18874: Implement the PEP 454 (tracemalloc) by Victor Stinner · 11 years ago