index
:
cpython.git
2.7
3.3
3.4
3.5
3.6
benjamin-clang
benjamin-iteration-torture
buildbot-custom
master
https://github.com/python/cpython.git
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
Objects
/
obmalloc.c
Commit message (
Expand
)
Author
Age
Files
Lines
*
bpo-35081: Rename internal headers (GH-10275)
Victor Stinner
2018-11-12
1
-1/+1
*
closes bpo-35204: Disable thread and memory sanitizers for address_in_range()...
Alexey Izbyshev
2018-11-11
1
-12/+31
*
bpo-35081: Add pycore_ prefix to internal header files (GH-10263)
Victor Stinner
2018-10-31
1
-1/+1
*
bpo-35081: Move Py_BUILD_CORE code to internal/mem.h (GH-10249)
Victor Stinner
2018-10-31
1
-0/+1
*
bpo-35053: Enhance tracemalloc to trace free lists (GH-10063)
Victor Stinner
2018-10-25
1
-0/+6
*
bpo-9263: _PyObject_Dump() detects freed memory (GH-10061)
Victor Stinner
2018-10-23
1
-0/+16
*
remove vestigal locking from obmalloc (GH-5805)
Benjamin Peterson
2018-02-24
1
-39/+0
*
bpo-32746: Fix multiple typos (GH-5144)
Leo Arias
2018-02-04
1
-1/+1
*
bpo-32241: Add the const qualifire to declarations of umodifiable strings. (#...
Serhiy Storchaka
2017-12-12
1
-1/+1
*
bpo-32030: Add pymain_get_global_config() (#4735)
Victor Stinner
2017-12-06
1
-2/+10
*
bpo-32030: Cleanup "path config" code (#4663)
Victor Stinner
2017-12-01
1
-12/+12
*
bpo-32030: Rework memory allocators (#4625)
Victor Stinner
2017-11-29
1
-93/+199
*
bpo-32030: Add _PyMainInterpreterConfig_ReadEnv() (#4542)
Victor Stinner
2017-11-24
1
-0/+18
*
bpo-32096: Remove obj and mem from _PyRuntime (#4532)
Victor Stinner
2017-11-24
1
-186/+647
*
bpo-32043: New "developer mode": "-X dev" option (#4413)
Victor Stinner
2017-11-16
1
-10/+9
*
bpo-32030: Split Py_Main() into subfunctions (#4399)
Victor Stinner
2017-11-15
1
-36/+41
*
Add the const qualifier to "char *" variables that refer to literal strings. ...
Serhiy Storchaka
2017-11-11
1
-2/+2
*
bpo-31626: Mark ends of the reallocated block in debug build. (#4210)
Serhiy Storchaka
2017-11-07
1
-19/+57
*
bpo-18835: Cleanup pymalloc (#4200)
Victor Stinner
2017-10-31
1
-472/+533
*
bpo-31626: Fixed a bug in debug memory allocator. (#3844)
Serhiy Storchaka
2017-10-31
1
-11/+2
*
bpo-30860: Fix deadcode in obmalloc.c (#3499)
Victor Stinner
2017-09-14
1
-2/+2
*
bpo-30860: Consolidate stateful runtime globals. (#3397)
Eric Snow
2017-09-08
1
-614/+160
*
bpo-31370: Remove support for threads-less builds (#3385)
Antoine Pitrou
2017-09-07
1
-2/+0
*
Revert "bpo-30860: Consolidate stateful runtime globals." (#3379)
Eric Snow
2017-09-06
1
-158/+614
*
bpo-30860: Consolidate stateful runtime globals. (#2594)
Eric Snow
2017-09-06
1
-614/+158
*
Fix spurious MemoryError introduced by PR #886. (#930)
T. Wouters
2017-03-31
1
-4/+4
*
bpo-29941: Assert fixes (#886)
T. Wouters
2017-03-31
1
-3/+3
*
correct silly spelling problem
Benjamin Peterson
2016-09-19
1
-9/+9
*
replace obmalloc's homegrown uptr and uchar types with standard ones
Benjamin Peterson
2016-09-19
1
-42/+31
*
improvements to code that checks whether Python (obmalloc) allocated an address
Benjamin Peterson
2016-09-19
1
-76/+22
*
replace PY_SIZE_MAX with SIZE_MAX
Benjamin Peterson
2016-09-07
1
-1/+1
*
replace Py_(u)intptr_t with the c99 standard types
Benjamin Peterson
2016-09-06
1
-1/+1
*
Issue #26249: Try test_capi on Windows
Victor Stinner
2016-04-22
1
-6/+7
*
PyMem_Malloc() now uses the fast pymalloc allocator
Victor Stinner
2016-04-22
1
-3/+3
*
Don't define _PyMem_PymallocEnabled() if pymalloc is disabled
Victor Stinner
2016-04-19
1
-1/+1
*
_PyMem_DebugFree(): fix compiler warning on Windows
Victor Stinner
2016-03-23
1
-1/+1
*
Fail if PyMem_Malloc() is called without holding the GIL
Victor Stinner
2016-03-16
1
-7/+7
*
On memory error, dump the memory block traceback
Victor Stinner
2016-03-15
1
-0/+9
*
Check the GIL in PyObject_Malloc()
Victor Stinner
2016-03-14
1
-22/+70
*
Add PYTHONMALLOC env var
Victor Stinner
2016-03-14
1
-59/+132
*
Issue #23450: Fixed possible integer overflows.
Serhiy Storchaka
2015-02-16
1
-1/+1
*
Issue #22335: Fix crash when trying to enlarge a bytearray to 0x7fffffff byte...
Antoine Pitrou
2014-11-02
1
-4/+4
|
\
|
*
Issue #22335: Fix crash when trying to enlarge a bytearray to 0x7fffffff byte...
Antoine Pitrou
2014-11-02
1
-4/+4
*
|
Issue #21233: Rename the C structure "PyMemAllocator" to "PyMemAllocatorEx" to
Victor Stinner
2014-06-02
1
-7/+7
*
|
Issue #21233: Fix _PyObject_Alloc() when compiled with WITH_VALGRIND defined
Victor Stinner
2014-05-06
1
-3/+3
*
|
Issue #21233: Oops, Fix _PyObject_Alloc(): initialize nbytes before going to
Victor Stinner
2014-05-02
1
-3/+3
*
|
Issue #21233: Add new C functions: PyMem_RawCalloc(), PyMem_Calloc(),
Victor Stinner
2014-05-02
1
-17/+109
|
/
*
Issue #18874: _PyObject_Malloc/Realloc/Free() now falls back on
Victor Stinner
2013-10-10
1
-17/+19
*
Close #18596: Support address sanity checking in clang/GCC
Nick Coghlan
2013-09-28
1
-0/+20
*
Fix minor typo.
Georg Brandl
2013-09-25
1
-1/+1
[next]