- e86b07c Bug #3951: Py_USING_MEMORY_DEBUGGER should not be enabled by default. by Martin v. Löwis · 16 years ago
- 9fa5a28 Issue #3642: Suppress warning in obmalloc when size_t is by Martin v. Löwis · 16 years ago
- fb1813c Changed type of numarenas from uint to size_t to silence a GCC warning on 64bit OSes. Reviewed by Benjamin Peterson. by Christian Heimes · 16 years ago
- 0470bab Issue #2620: Overflow checking when allocating or reallocating memory by Gregory P. Smith · 16 years ago
- 9d53457 Merge in release25-maint r60793: by Gregory P. Smith · 16 years ago
- 6819210 PEP 3123: Provide forward compatibility with Python 3.0, while keeping by Martin v. Löwis · 17 years ago
- ab77227 Don't inline Py_ADDRESS_IN_RANGE with gcc 4+ either. by Neal Norwitz · 18 years ago
- 3eeb173 _PyObject_DebugMalloc(): The return value should add by Tim Peters · 18 years ago
- 9ea89d2 In a PYMALLOC_DEBUG build obmalloc adds extra debugging info by Tim Peters · 18 years ago
- 9b26122 Get compiling again by Neal Norwitz · 19 years ago
- a628621 More low-hanging fruit. Still need to re-arrange some code (or find a better by Anthony Baxter · 19 years ago
- cf79aac Merge the tim-obmalloc branch to the trunk. by Tim Peters · 19 years ago
- 82c5a86 Oops, this is supposed to be disabled by default. by Neal Norwitz · 19 years ago
- 18e1655 Merge ssize_t branch. by Martin v. Löwis · 19 years ago
- e5e5aa4 Do a better job of not inlining Py_ADDRESS_IN_RANGE() for newer gcc's. by Neal Norwitz · 19 years ago
- ecc6e6a SF bug 1185883: PyObject_Realloc can't safely take over a block currently by Tim Peters · 19 years ago
- b5d7702 whoops, I wanted that commented out by default, will add doc to Misc by Neal Norwitz · 20 years ago
- 7eb3c91 SF bug 881641, make it easier to use valgrind by Neal Norwitz · 20 years ago
- e0a1bb6 Whitespace normalization. by Walter Dörwald · 21 years ago
- 39f59b0 Remove MALLOC_ZERO_RETURNS_NULL. by Martin v. Löwis · 22 years ago
- 8c14028 Patch #627105: Document that SYSTEM_PAGE_SIZE really should not be by Martin v. Löwis · 22 years ago
- efc1188 Fix warnings on 64-bit platforms about casts from pointers to ints. by Guido van Rossum · 22 years ago
- d1fedb6 Remove extraneous semicolon. by Jeremy Hylton · 22 years ago
- 889f61d Documented PYMALLOC_DEBUG. This completes primary coverage of all the by Tim Peters · 22 years ago
- 4ce71f7 PyObject_Realloc(): If a small block is shrinking, bite the expense of by Tim Peters · 23 years ago
- 449b5a8 _PyObject_DebugCheckAddress(): If the leading pad bytes are corrupt, by Tim Peters · 23 years ago
- 08d8215 _PyObject_DebugMallocStats(): Added some potentially expensive internal by Tim Peters · 23 years ago
- 64d80c9 PyObject_Malloc: make a tiny bit faster for platforms where malloc(0) by Tim Peters · 23 years ago
- 3e12071 Remove some long-disabled debugging boilerplate. by Tim Peters · 23 years ago
- 0e87118 _PyObject_DebugDumpStats: renamed to _PyObject_DebugMallocStats. by Tim Peters · 23 years ago
- 8a8cdfd Small anal correctness tweaks: by Tim Peters · 23 years ago
- 85cc1c4 _PyObject_DebugRealloc(): rewritten to let the underlying realloc do by Tim Peters · 23 years ago
- f539c68 _PyObject_DebugDumpAddress(): clarify an output message. by Tim Peters · 23 years ago
- f6fb501 PYMALLOC_{CLEAN, DEAD, FORBIDDEN}BYTE symbols: remove the PYMALLOC_ by Tim Peters · 23 years ago
- d2560cd Move PyObject_Malloc and PyObject_Free here from object.c. Remove by Neil Schemenauer · 23 years ago
- 52aefc8 SF bug 542181: Realloc behavior by Tim Peters · 23 years ago
- 49f2681 Minor improvements to the stats output dump, including adding commas to by Tim Peters · 23 years ago
- ffdd22f Repair an incomprehensible comment. by Tim Peters · 23 years ago
- 16bcb6b _PyMalloc_DebugDumpStats(): vastly improved the output, and it now by Tim Peters · 23 years ago
- e70ddf3 Widespread, but mostly in _PyMalloc_Malloc: optimize away all expensive by Tim Peters · 23 years ago
- b7265db _PyMalloc_Realloc(): removed a now-pointless cast. by Tim Peters · 23 years ago
- 84c1b97 _PyMalloc_{Malloc, Realloc}: Strive to meet the doc's promises about by Tim Peters · 23 years ago
- 6169f09 Fixed errors in two comments. by Tim Peters · 23 years ago
- 338e010 Restructured my pool-management overview in terms of the three by Tim Peters · 23 years ago
- 7ccfadf New PYMALLOC_DEBUG function void _PyMalloc_DebugDumpStats(void). by Tim Peters · 23 years ago
- 57b17ad Add one more assert that indirectly interlocking conditions are consistent by Tim Peters · 23 years ago
- 4c5be0c Fixed an error in a new assert. by Tim Peters · 23 years ago
- b1da050 Fixed a typo in a new comment. by Tim Peters · 23 years ago
- 2c95c99 _PyMalloc_Free(): As was already done for _PyMalloc_Malloc, rearranged by Tim Peters · 23 years ago
- 1e16db6 Added a long-overdue comment block giving an overview of pool operations by Tim Peters · 23 years ago
- c2ce91a It's once again thought safe to call the pymalloc free/realloc with an by Tim Peters · 23 years ago
- 7b85b4a new_arena(): In error cases, reset the number of available pools to 0. by Tim Peters · 23 years ago
- 1d99af8 Changed the #-of-arenas counters to uints -- no need to be insane about by Tim Peters · 23 years ago
- df4d137 Turns out the off_t macro isn't used anymore, so got rid of it. by Tim Peters · 23 years ago
- 3c83df2 Now that we're no longer linking arenas together, there's no need to by Tim Peters · 23 years ago
- 1230068 Retract the claim that this is always safe if PyMem_{Del, DEL, Free, FREE} by Tim Peters · 23 years ago
- d97a1c0 Lots of changes: by Tim Peters · 23 years ago
- bd02b14 Add missing "void" to function. by Neil Schemenauer · 23 years ago
- d1139e0 PYMALLOC_DEBUG routines: The "check API family" gimmick was going nowhere by Tim Peters · 23 years ago
- e085017 _PyMalloc_DebugRealloc(): simplify decl of "fresh". by Tim Peters · 23 years ago
- 62c06ba Minor code cleanup -- no semantic changes. by Tim Peters · 23 years ago
- ddea208 Give Python a debug-mode pymalloc, much as sketched on Python-Dev. by Tim Peters · 23 years ago
- ce7fb9b Just whitespace fiddling. by Tim Peters · 23 years ago
- 1221c0a Build obmalloc.c directly instead of #include'ing from object.c. by Tim Peters · 23 years ago
- 558ba52 Remove malloc hooks. by Neil Schemenauer · 23 years ago
- 25f3dc2 Drop the PyCore_* memory API. by Neil Schemenauer · 23 years ago
- 11f5be8 Simpilify PyCore_* macros by assuming the function prototypes for by Neil Schemenauer · 23 years ago
- b233652 Identifiers matching _[A-Z_]\w* are reserved for C implementations. by Tim Peters · 24 years ago
- a35c688 Add Vladimir Marangozov's object allocator. It is disabled by default. This by Neil Schemenauer · 24 years ago