aboutsummaryrefslogtreecommitdiff
path: root/Python/pyarena.c
AgeCommit message (Expand)Author
2021-03-24bpo-43244: Remove the pyarena.h header (GH-25007)Victor Stinner
2019-03-13bpo-36254: Fix invalid uses of %d in format strings in C. (GH-12264)Serhiy Storchaka
2018-10-19Fix typos in comments (GH-9905)Quan Tian
2013-07-07Issue #18203: Replace malloc() with PyMem_Malloc() to allocate arena objectsVictor Stinner
2013-01-19remove unnecessary clearing of listBenjamin Peterson
2012-09-20Issue #15144: Fix possible integer overflow when handling pointers as integer...Antoine Pitrou
2010-11-30Remove redundant includes of headers that are already included by Python.h.Georg Brandl
2010-05-09Recorded merge of revisions 81029 via svnmerge fromAntoine Pitrou
2006-08-11Merged revisions 46753-51188 via svnmerge fromThomas Wouters
2006-04-21Merge p3yk branch with the trunk up to revision 45595. This breaks a fairThomas Wouters
2006-03-02Document the purpose of the struct _block members.Tim Peters
2006-03-02Added words about what PyArena_Malloc() does.Tim Peters
2006-03-02Trimmed trailing whitespace.Tim Peters
2006-03-01Add missing DECREF.Jeremy Hylton
2006-02-28Add some stats collection in debugging mode.Jeremy Hylton
2006-02-28Use simple PyList to implement list of PyObject pointersJeremy Hylton
2006-02-28TabifyJeremy Hylton
2006-02-28Real arena implementationJeremy Hylton
2005-12-18fixed compilation with an ordinary C89 compilerFredrik Lundh
2005-12-18Cleanup a bit and make things more consistent.Neal Norwitz
2005-12-17Merge from ast-arena. This reduces the code in Python/ast.c by ~300 lines,Neal Norwitz