| Commit message (Expand) | Author | Age | Files | Lines |
* | gh-87347: Add parenthesis around macro arguments (#93915) | Victor Stinner | 2022-06-20 | 1 | -7/+7 |
|
|
* | bpo-45434: Remove useless space in includes (GH-28963) | Victor Stinner | 2021-10-14 | 1 | -1/+1 |
|
|
* | bpo-43774: Remove unused PYMALLOC_DEBUG macro (GH-25711) | Victor Stinner | 2021-04-29 | 1 | -2/+2 |
|
|
* | bpo-43795: PEP-652: Clean up the stable ABI/limited API (GH-25482) | Petr Viktorin | 2021-04-23 | 1 | -0/+1 |
|
|
* | bpo-42519: Replace PyObject_MALLOC() with PyObject_Malloc() (GH-23587) | Victor Stinner | 2020-12-01 | 1 | -2/+4 |
|
|
* | bpo-42519: Replace PyMem_MALLOC() with PyMem_Malloc() (GH-23586) | Victor Stinner | 2020-12-01 | 1 | -23/+9 |
|
|
* | bpo-39542: Make _Py_NewReference() opaque in C API (GH-18346) | Victor Stinner | 2020-02-05 | 1 | -35/+0 |
|
|
* | bpo-35134: Add Include/cpython/pymem.h (GH-12840) | Victor Stinner | 2019-04-15 | 1 | -95/+7 |
|
|
* | bpo-36389: _PyObject_IsFreed() now also detects uninitialized memory (GH-12770) | Victor Stinner | 2019-04-11 | 1 | -2/+0 |
|
|
* | bpo-35081: Move Py_BUILD_CORE code to internal/mem.h (GH-10249) | Victor Stinner | 2018-10-31 | 1 | -10/+0 |
|
|
* | bpo-9263: Dump Python object on GC assertion failure (GH-10062) | Victor Stinner | 2018-10-25 | 1 | -1/+1 |
|
|
* | bpo-35053: Add Include/tracemalloc.h (GH-10091) | Victor Stinner | 2018-10-25 | 1 | -37/+3 |
|
|
* | bpo-35053: Enhance tracemalloc to trace free lists (GH-10063) | Victor Stinner | 2018-10-25 | 1 | -0/+38 |
|
|
* | bpo-9263: _PyObject_Dump() detects freed memory (GH-10061) | Victor Stinner | 2018-10-23 | 1 | -1/+3 |
|
|
* | bpo-32030: Add pymain_get_global_config() (#4735) | Victor Stinner | 2017-12-06 | 1 | -4/+0 |
|
|
* | bpo-32030: Rework memory allocators (#4625) | Victor Stinner | 2017-11-29 | 1 | -1/+9 |
|
|
* | bpo-32030: Add _PyMainInterpreterConfig_ReadEnv() (#4542) | Victor Stinner | 2017-11-24 | 1 | -0/+6 |
|
|
* | bpo-32030: Split Py_Main() into subfunctions (#4399) | Victor Stinner | 2017-11-15 | 1 | -0/+4 |
|
|
* | Fix miscellaneous typos (#4275) | luzpaz | 2017-11-05 | 1 | -11/+11 |
|
|
* | bpo-30054: Expose tracemalloc C API (#1236) | Victor Stinner | 2017-06-20 | 1 | -8/+5 |
|
|
* | Issue #29058: All stable API extensions added after Python 3.2 are now | Serhiy Storchaka | 2016-12-27 | 1 | -0/+2 |
|
|
* | replace Py_(u)intptr_t with the c99 standard types | Benjamin Peterson | 2016-09-06 | 1 | -3/+3 |
|
|
* | Issue #26588: | Victor Stinner | 2016-03-23 | 1 | -1/+1 |
|
|
* | Issue #26588: remove debug traces from _tracemalloc. | Victor Stinner | 2016-03-22 | 1 | -2/+0 |
|
|
* | Issue #26588: fix compilation on Windows | Victor Stinner | 2016-03-22 | 1 | -0/+2 |
|
|
* | Add C functions _PyTraceMalloc_Track() | Victor Stinner | 2016-03-22 | 1 | -0/+34 |
|
|
* | Add PYTHONMALLOC env var | Victor Stinner | 2016-03-14 | 1 | -0/+9 |
|
|
* | Issue #21233: Rename the C structure "PyMemAllocator" to "PyMemAllocatorEx" to | Victor Stinner | 2014-06-02 | 1 | -4/+4 |
|
|
* | Issue #21233: Add new C functions: PyMem_RawCalloc(), PyMem_Calloc(), | Victor Stinner | 2014-05-02 | 1 | -0/+5 |
|
|
* | Issue #19526: Exclude all new API from the stable ABI. | Martin v. Löwis | 2014-01-03 | 1 | -0/+4 |
|
|
* | Issue #18203: Add _PyMem_RawStrdup() and _PyMem_Strdup() | Victor Stinner | 2013-07-07 | 1 | -0/+3 |
|
|
* | Issue #3329: Implement the PEP 445 | Victor Stinner | 2013-07-07 | 1 | -20/+74 |
|
|
* | Revert changeset 6661a8154eb3: Issue #3329: Add new APIs to customize memory ... | Victor Stinner | 2013-06-15 | 1 | -71/+20 |
|
|
* | Issue #3329: Add new APIs to customize memory allocators | Victor Stinner | 2013-06-14 | 1 | -20/+71 |
|
|
* | Merged revisions 78189 via svnmerge from | Mark Dickinson | 2010-02-14 | 1 | -4/+4 |
|
|
* | Merged revisions 76740 via svnmerge from | Mark Dickinson | 2009-12-10 | 1 | -2/+2 |
|
|
* | http://bugs.python.org/issue6836 | Kristján Valur Jónsson | 2009-09-28 | 1 | -3/+3 |
|
|
* | Merged revisions 65182 via svnmerge from | Georg Brandl | 2008-07-23 | 1 | -11/+22 |
|
|
* | Merged revisions 64114 via svnmerge from | Amaury Forgeot d'Arc | 2008-06-18 | 1 | -4/+8 |
|
|
* | Merged revisions 55325-55327 via svnmerge from | Guido van Rossum | 2007-05-14 | 1 | -0/+2 |
|
|
* | Merge p3yk branch with the trunk up to revision 45595. This breaks a fair | Thomas Wouters | 2006-04-21 | 1 | -10/+7 |
|
|
* | Remove MALLOC_ZERO_RETURNS_NULL. | Martin v. Löwis | 2002-11-23 | 1 | -9/+4 |
|
|
* | Excise DL_EXPORT from Include. | Mark Hammond | 2002-08-12 | 1 | -3/+3 |
|
|
* | Moving pymalloc along. | Tim Peters | 2002-04-28 | 1 | -37/+42 |
|
|
* | Moving pymalloc along. | Tim Peters | 2002-04-22 | 1 | -13/+9 |
|
|
* | First stab at rationalizing the PyMem_ API. Mixing PyObject_xyz with | Tim Peters | 2002-04-12 | 1 | -40/+55 |
|
|
* | Remove PyMalloc_* symbols. PyObject_Malloc now uses pymalloc if | Neil Schemenauer | 2002-04-12 | 1 | -30/+0 |
|
|
* | New PYMALLOC_DEBUG function void _PyMalloc_DebugDumpStats(void). | Tim Peters | 2002-04-01 | 1 | -0/+1 |
|
|
* | PYMALLOC_DEBUG routines: The "check API family" gimmick was going nowhere | Tim Peters | 2002-03-28 | 1 | -6/+6 |
|
|
* | Give Python a debug-mode pymalloc, much as sketched on Python-Dev. | Tim Peters | 2002-03-23 | 1 | -3/+17 |
|
|