summaryrefslogtreecommitdiff
path: root/Objects/obmalloc.c
Commit message (Expand)AuthorAgeFilesLines
* correct silly spelling problemBenjamin Peterson2016-09-181-9/+9
* replace obmalloc's homegrown uptr and uchar types with standard onesBenjamin Peterson2016-09-181-42/+31
* improvements to code that checks whether Python (obmalloc) allocated an addressBenjamin Peterson2016-09-181-76/+22
* replace PY_SIZE_MAX with SIZE_MAXBenjamin Peterson2016-09-071-1/+1
* replace Py_(u)intptr_t with the c99 standard typesBenjamin Peterson2016-09-061-1/+1
* Issue #26249: Try test_capi on WindowsVictor Stinner2016-04-221-6/+7
* PyMem_Malloc() now uses the fast pymalloc allocatorVictor Stinner2016-04-221-3/+3
* Don't define _PyMem_PymallocEnabled() if pymalloc is disabledVictor Stinner2016-04-191-1/+1
* _PyMem_DebugFree(): fix compiler warning on WindowsVictor Stinner2016-03-231-1/+1
* Fail if PyMem_Malloc() is called without holding the GILVictor Stinner2016-03-161-7/+7
* On memory error, dump the memory block tracebackVictor Stinner2016-03-151-0/+9
* Check the GIL in PyObject_Malloc()Victor Stinner2016-03-141-22/+70
* Add PYTHONMALLOC env varVictor Stinner2016-03-141-59/+132
* Issue #23450: Fixed possible integer overflows.Serhiy Storchaka2015-02-161-1/+1
* Issue #22335: Fix crash when trying to enlarge a bytearray to 0x7fffffff byte...Antoine Pitrou2014-11-021-4/+4
|\
| * Issue #22335: Fix crash when trying to enlarge a bytearray to 0x7fffffff byte...Antoine Pitrou2014-11-021-4/+4
* | Issue #21233: Rename the C structure "PyMemAllocator" to "PyMemAllocatorEx" toVictor Stinner2014-06-021-7/+7
* | Issue #21233: Fix _PyObject_Alloc() when compiled with WITH_VALGRIND definedVictor Stinner2014-05-061-3/+3
* | Issue #21233: Oops, Fix _PyObject_Alloc(): initialize nbytes before going toVictor Stinner2014-05-021-3/+3
* | Issue #21233: Add new C functions: PyMem_RawCalloc(), PyMem_Calloc(),Victor Stinner2014-05-021-17/+109
|/
* Issue #18874: _PyObject_Malloc/Realloc/Free() now falls back onVictor Stinner2013-10-101-17/+19
* Close #18596: Support address sanity checking in clang/GCCNick Coghlan2013-09-291-0/+20
* Fix minor typo.Georg Brandl2013-09-251-1/+1
* Update internal comments to say _something_ about the "API ID".Tim Peters2013-09-191-1/+3
* Nerge 3.3 into default.Tim Peters2013-09-051-142/+416
|\
| * Issue #18408: Fix _PyMem_DebugRealloc()Victor Stinner2013-07-091-6/+8
| * Issue #18203: Add _PyMem_RawStrdup() and _PyMem_Strdup()Victor Stinner2013-07-071-0/+28
| * Issue #3329: Fix _PyObject_ArenaVirtualFree()Victor Stinner2013-07-071-1/+1
| * Issue #3329: Implement the PEP 445Victor Stinner2013-07-071-149/+355
| * Issue #13483: Use VirtualAlloc in obmalloc on Windows.Martin v. L?wis2013-06-271-2/+12
| * Revert changeset 6661a8154eb3: Issue #3329: Add new APIs to customize memory ...Victor Stinner2013-06-151-364/+137
| * Issue #3329: Add new APIs to customize memory allocatorsVictor Stinner2013-06-151-137/+364
| * Issue #17469: Fix _Py_GetAllocatedBlocks() and sys.getallocatedblocks() when ...Antoine Pitrou2013-04-061-3/+5
| * merge 3.3 (#17228)Benjamin Peterson2013-02-201-1/+1
| |\
| * | Following issue #13390, fix compilation --without-pymalloc, and make sys.geta...Antoine Pitrou2012-12-171-0/+7
| * | Issue #13390: New function :func:`sys.getallocatedblocks()` returns the numbe...Antoine Pitrou2012-12-091-1/+20
* | | Issue #18942: sys._debugmallocstats() output was damaged on Windows.Tim Peters2013-09-051-1/+1
| |/ |/|
* | fix building without pymalloc (closes #17228)Benjamin Peterson2013-02-201-1/+1
|/
* Issue #15144: Fix possible integer overflow when handling pointers as integer...Antoine Pitrou2012-09-201-5/+2
* Issue #14785: Add sys._debugmallocstats() to help debug low-level memory allo...David Malcolm2012-06-221-33/+48
* Close #14232: catch mmap() failure in new_arena() of obmallocVictor Stinner2012-03-101-3/+8
* Better resolution for issue #11849: Ensure that free()d memory arenas are rea...Antoine Pitrou2011-11-261-15/+22
* Issue #11849: Make it more likely for the system allocator to releaseAntoine Pitrou2011-05-031-6/+23
* Issue #8914: fix various warnings from the Clang static analyzer v254.Brett Cannon2011-02-221-2/+0
* Issue #8020: Avoid a crash where the small objects allocator would readAntoine Pitrou2011-01-071-6/+22
* Indentation cleanup.Stefan Krah2010-11-261-9/+9
* Recorded merge of revisions 81029 via svnmerge fromAntoine Pitrou2010-05-091-1073/+1073
* Merged revisions 76644 via svnmerge fromBenjamin Peterson2009-12-031-0/+39
* merging revision 75106 from trunk:Kristján Valur Jónsson2009-09-281-1/+1
* http://bugs.python.org/issue6836Kristján Valur Jónsson2009-09-281-17/+87