summaryrefslogtreecommitdiff
path: root/Python/pyarena.c
Commit message (Expand)AuthorAgeFilesLines
* [3.7] bpo-36254: Fix invalid uses of %d in format strings in C. (GH-12264). (...Serhiy Storchaka2019-03-141-1/+1
* Issue #18203: Replace malloc() with PyMem_Malloc() to allocate arena objectsVictor Stinner2013-07-071-6/+6
* remove unnecessary clearing of listBenjamin Peterson2013-01-191-7/+0
* Issue #15144: Fix possible integer overflow when handling pointers as integer...Antoine Pitrou2012-09-201-5/+3
* Remove redundant includes of headers that are already included by Python.h.Georg Brandl2010-11-301-1/+0
* Recorded merge of revisions 81029 via svnmerge fromAntoine Pitrou2010-05-091-150/+150
* Merged revisions 46753-51188 via svnmerge fromThomas Wouters2006-08-111-4/+4
* Merge p3yk branch with the trunk up to revision 45595. This breaks a fairThomas Wouters2006-04-211-5/+41
* Document the purpose of the struct _block members.Tim Peters2006-03-021-1/+18
* Added words about what PyArena_Malloc() does.Tim Peters2006-03-021-1/+1
* Trimmed trailing whitespace.Tim Peters2006-03-021-6/+6
* Add missing DECREF.Jeremy Hylton2006-03-011-1/+5
* Add some stats collection in debugging mode.Jeremy Hylton2006-02-281-3/+41
* Use simple PyList to implement list of PyObject pointersJeremy Hylton2006-02-281-44/+20
* TabifyJeremy Hylton2006-02-281-84/+87
* Real arena implementationJeremy Hylton2006-02-281-62/+80
* fixed compilation with an ordinary C89 compilerFredrik Lundh2005-12-181-2/+2
* Cleanup a bit and make things more consistent.Neal Norwitz2005-12-181-7/+2
* Merge from ast-arena. This reduces the code in Python/ast.c by ~300 lines,Neal Norwitz2005-12-171-0/+133