1. b18f8bc remove vestigal locking from obmalloc (GH-5805) by Benjamin Peterson · 6 years ago
  2. c3d9508 bpo-32746: Fix multiple typos (GH-5144) by Leo Arias · 6 years ago
  3. 4ae06c5 bpo-32241: Add the const qualifire to declarations of umodifiable strings. (#4748) by Serhiy Storchaka · 7 years ago
  4. 6bf992a bpo-32030: Add pymain_get_global_config() (#4735) by Victor Stinner · 7 years ago
  5. b64de46 bpo-32030: Cleanup "path config" code (#4663) by Victor Stinner · 7 years ago
  6. 5d39e04 bpo-32030: Rework memory allocators (#4625) by Victor Stinner · 7 years ago
  7. 46972b7 bpo-32030: Add _PyMainInterpreterConfig_ReadEnv() (#4542) by Victor Stinner · 7 years ago
  8. 9e87e77 bpo-32096: Remove obj and mem from _PyRuntime (#4532) by Victor Stinner · 7 years ago
  9. ccb0442 bpo-32043: New "developer mode": "-X dev" option (#4413) by Victor Stinner · 7 years ago
  10. f7e5b56 bpo-32030: Split Py_Main() into subfunctions (#4399) by Victor Stinner · 7 years ago
  11. e2f92de Add the const qualifier to "char *" variables that refer to literal strings. (#4370) by Serhiy Storchaka · 7 years ago
  12. 3cc4c53 bpo-31626: Mark ends of the reallocated block in debug build. (#4210) by Serhiy Storchaka · 7 years ago
  13. 9ed83c4 bpo-18835: Cleanup pymalloc (#4200) by Victor Stinner · 7 years ago
  14. b484d56 bpo-31626: Fixed a bug in debug memory allocator. (#3844) by Serhiy Storchaka · 7 years ago
  15. ccb3c76 bpo-30860: Fix deadcode in obmalloc.c (#3499) by Victor Stinner · 7 years ago
  16. 2ebc5ce bpo-30860: Consolidate stateful runtime globals. (#3397) by Eric Snow · 7 years ago
  17. a6a4dc8 bpo-31370: Remove support for threads-less builds (#3385) by Antoine Pitrou · 7 years ago
  18. 05351c1 Revert "bpo-30860: Consolidate stateful runtime globals." (#3379) by Eric Snow · 7 years ago
  19. 76d5abc bpo-30860: Consolidate stateful runtime globals. (#2594) by Eric Snow · 7 years ago
  20. 06bb487 Fix spurious MemoryError introduced by PR #886. (#930) by T. Wouters · 7 years ago
  21. a00c3fd bpo-29941: Assert fixes (#886) by T. Wouters · 7 years ago
  22. 5d4b09c correct silly spelling problem by Benjamin Peterson · 8 years ago
  23. 19517e4 replace obmalloc's homegrown uptr and uchar types with standard ones by Benjamin Peterson · 8 years ago
  24. 3924f93 improvements to code that checks whether Python (obmalloc) allocated an address by Benjamin Peterson · 8 years ago
  25. 2f8bfef replace PY_SIZE_MAX with SIZE_MAX by Benjamin Peterson · 8 years ago
  26. ca47063 replace Py_(u)intptr_t with the c99 standard types by Benjamin Peterson · 8 years ago
  27. 1593259 Issue #26249: Try test_capi on Windows by Victor Stinner · 8 years ago
  28. f5c4b99 PyMem_Malloc() now uses the fast pymalloc allocator by Victor Stinner · 8 years ago
  29. 0621e0e Don't define _PyMem_PymallocEnabled() if pymalloc is disabled by Victor Stinner · 8 years ago
  30. 0aed3a4 _PyMem_DebugFree(): fix compiler warning on Windows by Victor Stinner · 8 years ago
  31. ad52437 Fail if PyMem_Malloc() is called without holding the GIL by Victor Stinner · 8 years ago
  32. 0611c26 On memory error, dump the memory block traceback by Victor Stinner · 8 years ago
  33. c4aec36 Check the GIL in PyObject_Malloc() by Victor Stinner · 8 years ago
  34. 34be807 Add PYTHONMALLOC env var by Victor Stinner · 8 years ago
  35. 26861b0 Issue #23450: Fixed possible integer overflows. by Serhiy Storchaka · 9 years ago
  36. 8a03896 Issue #22335: Fix crash when trying to enlarge a bytearray to 0x7fffffff bytes on a 32-bit platform. by Antoine Pitrou · 10 years ago
  37. cc23154 Issue #22335: Fix crash when trying to enlarge a bytearray to 0x7fffffff bytes on a 32-bit platform. by Antoine Pitrou · 10 years ago
  38. d8f0d92 Issue #21233: Rename the C structure "PyMemAllocator" to "PyMemAllocatorEx" to by Victor Stinner · 10 years ago
  39. 3080d92 Issue #21233: Fix _PyObject_Alloc() when compiled with WITH_VALGRIND defined by Victor Stinner · 10 years ago
  40. af8fc64 Issue #21233: Oops, Fix _PyObject_Alloc(): initialize nbytes before going to by Victor Stinner · 10 years ago
  41. db067af Issue #21233: Add new C functions: PyMem_RawCalloc(), PyMem_Calloc(), by Victor Stinner · 10 years ago
  42. 6cf185d Issue #18874: _PyObject_Malloc/Realloc/Free() now falls back on by Victor Stinner · 11 years ago
  43. 6ba64f4 Close #18596: Support address sanity checking in clang/GCC by Nick Coghlan · 11 years ago
  44. 7cba5fd Fix minor typo. by Georg Brandl · 11 years ago
  45. df099f5 Update internal comments to say _something_ about the "API ID". by Tim Peters · 11 years ago
  46. b237295 Nerge 3.3 into default. by Tim Peters · 11 years ago
  47. eaa3bcc Issue #18942: sys._debugmallocstats() output was damaged on Windows. by Tim Peters · 11 years ago
  48. c426636 Issue #18408: Fix _PyMem_DebugRealloc() by Victor Stinner · 11 years ago
  49. 49fc8ec Issue #18203: Add _PyMem_RawStrdup() and _PyMem_Strdup() by Victor Stinner · 11 years ago
  50. 725e668 Issue #3329: Fix _PyObject_ArenaVirtualFree() by Victor Stinner · 11 years ago
  51. 0507bf5 Issue #3329: Implement the PEP 445 by Victor Stinner · 11 years ago
  52. cd83fa8 Issue #13483: Use VirtualAlloc in obmalloc on Windows. by Martin v. Löwis · 11 years ago
  53. 36f01ad Revert changeset 6661a8154eb3: Issue #3329: Add new APIs to customize memory allocators by Victor Stinner · 11 years ago
  54. 4d70562 Issue #3329: Add new APIs to customize memory allocators by Victor Stinner · 11 years ago
  55. 0aaaa62 Issue #17469: Fix _Py_GetAllocatedBlocks() and sys.getallocatedblocks() when running on valgrind. by Antoine Pitrou · 11 years ago
  56. abe40c2 merge 3.3 (#17228) by Benjamin Peterson · 11 years ago
  57. 2dba1ee fix building without pymalloc (closes #17228) by Benjamin Peterson · 11 years ago
  58. 9284053 Following issue #13390, fix compilation --without-pymalloc, and make sys.getallocatedblocks() return 0 in that situation. by Antoine Pitrou · 12 years ago
  59. f9d0b12 Issue #13390: New function :func:`sys.getallocatedblocks()` returns the number of memory blocks currently allocated. by Antoine Pitrou · 12 years ago
  60. ca8aa4a Issue #15144: Fix possible integer overflow when handling pointers as integer values, by using Py_uintptr_t instead of size_t. by Antoine Pitrou · 12 years ago
  61. 49526f4 Issue #14785: Add sys._debugmallocstats() to help debug low-level memory allocation issues by David Malcolm · 12 years ago
  62. ba10882 Close #14232: catch mmap() failure in new_arena() of obmalloc by Victor Stinner · 12 years ago
  63. f0effe6 Better resolution for issue #11849: Ensure that free()d memory arenas are really released by Antoine Pitrou · 13 years ago
  64. 6f26be0 Issue #11849: Make it more likely for the system allocator to release by Antoine Pitrou · 13 years ago
  65. b94767f Issue #8914: fix various warnings from the Clang static analyzer v254. by Brett Cannon · 13 years ago
  66. b7fb2e2 Issue #8020: Avoid a crash where the small objects allocator would read by Antoine Pitrou · 14 years ago
  67. 735bb12 Indentation cleanup. by Stefan Krah · 14 years ago
  68. f95a1b3 Recorded merge of revisions 81029 via svnmerge from by Antoine Pitrou · 14 years ago
  69. 05159c4 Merged revisions 76644 via svnmerge from by Benjamin Peterson · 15 years ago
  70. 3436900 merging revision 75106 from trunk: by Kristján Valur Jónsson · 15 years ago
  71. ae4cfb1 http://bugs.python.org/issue6836 by Kristján Valur Jónsson · 15 years ago
  72. 6fea233 Merged revisions 66616 via svnmerge from by Martin v. Löwis · 16 years ago
  73. 5aca882 Merged revisions 66383 via svnmerge from by Martin v. Löwis · 16 years ago
  74. 6144bee Merged revisions 65975 via svnmerge from by Christian Heimes · 16 years ago
  75. d492ad8 Merged revisions 65182 via svnmerge from by Georg Brandl · 16 years ago
  76. 9c74b14 Merged revisions 64114 via svnmerge from by Amaury Forgeot d'Arc · 16 years ago
  77. 9f2e346 Merged revisions 56467-56482 via svnmerge from by Martin v. Löwis · 17 years ago
  78. 89f507f Four months of trunk changes (including a few releases...) by Thomas Wouters · 18 years ago
  79. 73e5a5b Merge the rest of the trunk. by Thomas Wouters · 18 years ago
  80. 49fd7fa Merge p3yk branch with the trunk up to revision 45595. This breaks a fair by Thomas Wouters · 18 years ago
  81. a977329 Merge part of the trunk changes into the p3yk branch. This merges from 43030 by Thomas Wouters · 18 years ago
  82. 82c5a86 Oops, this is supposed to be disabled by default. by Neal Norwitz · 18 years ago
  83. 18e1655 Merge ssize_t branch. by Martin v. Löwis · 18 years ago
  84. e5e5aa4 Do a better job of not inlining Py_ADDRESS_IN_RANGE() for newer gcc's. by Neal Norwitz · 19 years ago
  85. ecc6e6a SF bug 1185883: PyObject_Realloc can't safely take over a block currently by Tim Peters · 19 years ago
  86. b5d7702 whoops, I wanted that commented out by default, will add doc to Misc by Neal Norwitz · 20 years ago
  87. 7eb3c91 SF bug 881641, make it easier to use valgrind by Neal Norwitz · 20 years ago
  88. e0a1bb6 Whitespace normalization. by Walter Dörwald · 21 years ago
  89. 39f59b0 Remove MALLOC_ZERO_RETURNS_NULL. by Martin v. Löwis · 22 years ago
  90. 8c14028 Patch #627105: Document that SYSTEM_PAGE_SIZE really should not be by Martin v. Löwis · 22 years ago
  91. efc1188 Fix warnings on 64-bit platforms about casts from pointers to ints. by Guido van Rossum · 22 years ago
  92. d1fedb6 Remove extraneous semicolon. by Jeremy Hylton · 22 years ago
  93. 889f61d Documented PYMALLOC_DEBUG. This completes primary coverage of all the by Tim Peters · 22 years ago
  94. 4ce71f7 PyObject_Realloc(): If a small block is shrinking, bite the expense of by Tim Peters · 22 years ago
  95. 449b5a8 _PyObject_DebugCheckAddress(): If the leading pad bytes are corrupt, by Tim Peters · 22 years ago
  96. 08d8215 _PyObject_DebugMallocStats(): Added some potentially expensive internal by Tim Peters · 22 years ago
  97. 64d80c9 PyObject_Malloc: make a tiny bit faster for platforms where malloc(0) by Tim Peters · 22 years ago
  98. 3e12071 Remove some long-disabled debugging boilerplate. by Tim Peters · 22 years ago
  99. 0e87118 _PyObject_DebugDumpStats: renamed to _PyObject_DebugMallocStats. by Tim Peters · 22 years ago
  100. 8a8cdfd Small anal correctness tweaks: by Tim Peters · 22 years ago