summaryrefslogtreecommitdiffstats
path: root/Python/Python-ast.c
Commit message (Expand)AuthorAgeFilesLines
* Make AST nodes pickleable.Georg Brandl2008-03-301-2/+27
* Fix error message -- "expects either 0 or 0 arguments"Georg Brandl2008-03-301-2/+4
* Make _fields attr for no fields consistent with _attributes attr.Georg Brandl2008-03-301-8/+3
* #2505: allow easier creation of AST nodes.Georg Brandl2008-03-301-22/+113
* Patch #2511: Give the "excepthandler" AST item proper attributes by making it...Georg Brandl2008-03-301-79/+107
* Properly check for consistency with the third argument ofGeorg Brandl2008-03-291-4/+11
* Silence a compilation warningAmaury Forgeot d'Arc2008-03-281-1/+1
* Patch #1810 by Thomas Lee, reviewed by myself:Georg Brandl2008-03-281-5/+2861
* Issue #2051 and patch from Alexander Belopolsky:Christian Heimes2008-02-231-2/+2
* Patch #1759: Backport of PEP 3129 class decoratorsChristian Heimes2008-02-231-8/+19
* Fix a couple of problems in generating the AST code:Neal Norwitz2007-02-261-166/+56
* Modify Parser/asdl_c.py so that the __version__ number for Python/Python-ast.cBrett Cannon2007-02-121-1/+10
* Check in changed Python-ast.c from a cosmetic change to Python.asdl (inBrett Cannon2007-02-111-1/+1
* Introduce asdl_int_seq, to hold cmpop_ty.Martin v. Löwis2006-04-131-3/+3
* Regenerate.Martin v. Löwis2006-04-111-2/+0
* Make _kind types global for C++ compilation.Martin v. Löwis2006-04-111-1/+1
* low-hanging fruit in Python/ - g++ still hates all the enum_kind declarationsAnthony Baxter2006-04-111-0/+2
* Regenerate.Martin v. Löwis2006-04-071-1/+1
* Add lineno, col_offset to excephandler to enable future fix forJeremy Hylton2006-04-041-3/+18
* * Fix a refleak of *_attributes.Neal Norwitz2006-04-031-144/+146
* Fix memory leak on attributes.Martin v. Löwis2006-03-021-5/+13
* Patch #1440601: Add col_offset attribute to AST nodes.Martin v. Löwis2006-03-011-51/+118
* Don't pollute namespace as bad as before. All the types are static now.Neal Norwitz2006-02-281-152/+152
* from __future__ import with_statement addon for 'with', mostly written byThomas Wouters2006-02-281-2/+2
* SF patch #1438387, PEP 328: relative and absolute imports.Thomas Wouters2006-02-281-2/+10
* Regenerate.Martin v. Löwis2006-02-281-0/+2
* PEP 343 -- the with-statement.Guido van Rossum2006-02-271-0/+52
* Create _ast module.Martin v. Löwis2006-02-271-29/+345
* PEP 308 implementation, including minor refdocs and some testcases. ItThomas Wouters2006-02-271-0/+58
* Avoid reinitializing the types twice.Martin v. Löwis2006-02-271-0/+1
* Stop generating empty arrays.Martin v. Löwis2006-02-261-117/+38
* Fix iterating over cmpop_ty lists.Martin v. Löwis2006-02-261-2/+7
* Generate code to recursively copy an AST intoMartin v. Löwis2006-02-261-724/+1550
* Regenerate.Martin v. Löwis2006-01-021-45/+45
* Merge from ast-arena. This reduces the code in Python/ast.c by ~300 lines,Neal Norwitz2005-12-171-554/+113
* SF #1373150, diffs in working copy after a buildNeal Norwitz2005-12-111-1/+1
* Whoops, checkin consistent versions of *all* files to stop pollutingNeal Norwitz2005-11-131-0/+74
* Prevent name pollution by making lots of internal functions static.Neal Norwitz2005-11-131-14/+28
* Use PyErr_NoMemory() instead of rolling our own.Neal Norwitz2005-10-231-61/+54
* Merge ast-branch to headJeremy Hylton2005-10-201-0/+2281