summaryrefslogtreecommitdiffstats
path: root/Include/pyarena.h
Commit message (Collapse)AuthorAgeFilesLines
* bpo-35134: Move Include/{pyarena.h,pyctype.h} to Include/cpython/ (GH-24550)Nicholas Sim2021-02-171-64/+0
| | | | Move non-limited C API headers pyarena.h and pyctype.h into Include/cpython/ directory.
* Merge branches/pep-0384.Martin v. Löwis2010-12-031-0/+2
|
* Added words about what PyArena_Malloc() does.Tim Peters2006-03-021-4/+16
|
* Beefed up description of what this does; new XXX.Tim Peters2006-03-021-2/+10
|
* New XXX pointing out errors in the description ofTim Peters2006-03-021-0/+6
| | | | PyArena_New(); unsure what the intent is.
* Trimmed trailing whitespace.Tim Peters2006-03-021-1/+1
|
* Real arena implementationJeremy Hylton2006-02-281-10/+4
| | | | | Replace the toy arena implementation with a real one, based on allocating 8K chunks of memory by default.
* Merge from ast-arena. This reduces the code in Python/ast.c by ~300 lines,Neal Norwitz2005-12-171-0/+42
simplifies a lot of error handling code, and fixes many memory leaks.