summaryrefslogtreecommitdiff
path: root/Include/objimpl.h
Commit message (Expand)AuthorAgeFilesLines
* [3.7] bpo-27987: align PyGC_Head to alignof(long double) (GH-13335) (GH-13581)Inada Naoki2019-06-021-1/+5
* [3.7] Revert "align PyGC_Head to alignof(long double) (GH-13335)" (GH-13569)Gregory P. Smith2019-05-251-5/+1
* bpo-27987: align PyGC_Head to alignof(long double) (GH-13335)Inada Naoki2019-05-251-1/+5
* Fix typo in Include/objimpl.h, the word "has" was missing (GH-5568) (GH-5569)Miss Islington (bot)2018-02-111-1/+1
* bpo-32030: Add pymain_get_global_config() (#4735)Victor Stinner2017-12-061-1/+1
* Issue #29058: All stable API extensions added after Python 3.2 are nowSerhiy Storchaka2016-12-271-0/+2
* Issue #26900: Excluded underscored names and other private API from limited API.Serhiy Storchaka2016-09-111-0/+4
* Don't run garbage collection on interpreter exit if it was explicitly disabledŁukasz Langa2016-09-091-1/+2
* Issue #21233: Add new C functions: PyMem_RawCalloc(), PyMem_Calloc(),Victor Stinner2014-05-021-1/+3
* cast negative numbers to size_t before shifting them (#20929)Benjamin Peterson2014-03-141-1/+1
* Issue #18783: Removed existing mentions of Python long type in docstrings,Serhiy Storchaka2013-08-271-1/+1
|\
| * Issue #18783: Removed existing mentions of Python long type in docstrings,Serhiy Storchaka2013-08-271-1/+1
* | Issue #18112: PEP 442 implementation (safe object finalization).Antoine Pitrou2013-07-301-5/+29
* | Issue #3329: Implement the PEP 445Victor Stinner2013-07-071-34/+28
* | Revert changeset 6661a8154eb3: Issue #3329: Add new APIs to customize memory ...Victor Stinner2013-06-151-39/+34
* | Issue #3329: Add new APIs to customize memory allocatorsVictor Stinner2013-06-151-34/+39
* | Issue #17937: Try harder to collect cyclic garbage at shutdown.Antoine Pitrou2013-05-191-0/+4
* | Using 'long double' to force this structure to be worst case aligned is noGregory P. Smith2012-12-101-1/+1
* | Issue #13390: New function :func:`sys.getallocatedblocks()` returns the numbe...Antoine Pitrou2012-12-091-0/+2
|/
* Issue #15144: Fix possible integer overflow when handling pointers as integer...Antoine Pitrou2012-09-201-6/+3
* Issue #14785: Add sys._debugmallocstats() to help debug low-level memory allo...David Malcolm2012-06-221-1/+3
* Issue #10333: Remove ancient GC API, which has been deprecated sinceAntoine Pitrou2011-01-041-12/+0
* Merge branches/pep-0384.Martin v. Löwis2010-12-031-1/+2
* Recorded merge of revisions 81029 via svnmerge fromAntoine Pitrou2010-05-091-73/+73
* http://bugs.python.org/issue6836Kristján Valur Jónsson2009-09-281-0/+7
* Merged revisions 70546 via svnmerge fromAntoine Pitrou2009-03-231-0/+11
* #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT.Christian Heimes2007-12-191-5/+5
* Remove _PyObject_DelNeal Norwitz2007-08-191-3/+0
* Merged revisions 56467-56482 via svnmerge fromMartin v. Löwis2007-07-211-5/+5
* Get rid of most of the flags (in tp_flags) that keep track of variousGuido van Rossum2006-07-271-3/+1
* Merge p3yk branch with the trunk up to revision 45595. This breaks a fairThomas Wouters2006-04-211-13/+9
* Make PyGC_Collect() use Py_ssize_t.Neal Norwitz2006-03-041-1/+1
* Change GC refcount to Py_ssize_t.Martin v. Löwis2006-03-011-1/+1
* Change _PyObject_GC_Resize to expect Py_ssize_t.Martin v. Löwis2006-02-161-1/+1
* Merge ssize_t branch.Martin v. Löwis2006-02-151-3/+3
* Fix PyGC_Collect() to be exported from the built DLL on Windows. (Fix givenBarry Warsaw2006-01-261-1/+1
* [ 1243081 ] repair typosGeorg Brandl2005-07-221-1/+1
* Formalize that the Py_VISIT macro requires that the tp_traverseTim Peters2004-07-151-1/+5
* Documented the new Py_VISIT macro to simplify implementation ofJim Fulton2004-07-141-0/+10
* - New C API PyGC_Collect(), same as calling gc.collect().Guido van Rossum2003-04-171-0/+3
* Excise DL_EXPORT from Include.Mark Hammond2002-08-121-20/+20
* Removed WITH_CYCLE_GC #ifdef-ery. Holes:Tim Peters2002-07-071-19/+0
* Finished transitioning to using gc_refs to track gc objects' states.Tim Peters2002-07-021-3/+5
* Reserved another gc_refs value for untracked objects. Every live gcTim Peters2002-07-021-2/+10
* _PyGC_generation0 is now a pointerNeil Schemenauer2002-05-041-4/+4
* Moving pymalloc along.Tim Peters2002-04-281-75/+89
* _PyObject_DebugDumpStats: renamed to _PyObject_DebugMallocStats.Tim Peters2002-04-131-1/+1
* First cut at repairing out-of-date comments; make alignment of macro defsTim Peters2002-04-121-15/+24
* Remove PyMalloc_* symbols. PyObject_Malloc now uses pymalloc ifNeil Schemenauer2002-04-121-38/+44
* Add _Py_AS_GC macro. It will be used by the trashcan code on object.c.Neil Schemenauer2002-03-281-2/+4