summaryrefslogtreecommitdiff
path: root/Parser/asdl_c.py
Commit message (Expand)AuthorAgeFilesLines
* [2.7] bpo-34234: Use _PyAnyInt_Check() and _PyAnyInt_CheckExact(). (GH-8479)Serhiy Storchaka2018-07-311-1/+1
* Fix a shadow-compatible-local warning (#2182)Yuan Chao Chou2017-08-041-3/+3
* Issue #24098: Fixed possible crash when AST is changed in process ofSerhiy Storchaka2016-10-071-0/+7
* Revert unintended commit to asdl_c.pyMartin Panter2016-09-241-1/+1
* Fix incomplete format error in asdl.pyMartin Panter2016-09-241-1/+1
* Spelling and grammar fixes in code comments and documentationMartin Panter2016-07-281-1/+1
* #18803: fix more typos. Patch by Févry Thibault.Ezio Melotti2013-08-261-1/+1
* Make PyAST_obj2mod C89 compliant.Trent Nelson2012-12-131-3/+11
* #15923: fix a mistake in asdl_c.py that resulted in a TypeError after 2801bf8...Ezio Melotti2012-09-301-1/+1
* allow None identifiersBenjamin Peterson2011-07-221-1/+1
* verify the types of AST strings and identifiers (closes #12609 and #12610)Benjamin Peterson2011-07-221-2/+19
* hardcode the old svn __version__Benjamin Peterson2011-07-221-5/+3
* fix code formattingBenjamin Peterson2010-06-091-2/+3
* account for PyObject_IsInstance's new ability to failBenjamin Peterson2009-12-131-3/+19
* use booleans for flagsBenjamin Peterson2009-06-071-10/+10
* fix compiler warningBenjamin Peterson2008-10-191-1/+1
* Fixed #4067 by implementing _attributes and _fields for the AST root node.Armin Ronacher2008-10-191-0/+18
* update asdl_c.py from r66377Benjamin Peterson2008-09-101-1/+1
* This reverts r63675 based on the discussion in this thread:Gregory P. Smith2008-06-091-5/+5
* Renamed PyString to PyBytesChristian Heimes2008-05-261-5/+5
* Use file.write instead of print to make it easier to merge with 3k.Neal Norwitz2008-03-311-12/+13
* 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-8/+100
* Properly check for consistency with the third argument ofGeorg Brandl2008-03-291-5/+12
* Silence compiler warning at the source.Georg Brandl2008-03-281-1/+1
* Patch #1810 by Thomas Lee, reviewed by myself:Georg Brandl2008-03-281-2/+268
* Patch #2167 from calvin: Remove unused importsChristian Heimes2008-02-231-1/+1
* Fix a couple of problems in generating the AST code:Neal Norwitz2007-02-261-5/+3
* Modify Parser/asdl_c.py so that the __version__ number for Python/Python-ast.cBrett Cannon2007-02-121-2/+19
* Prefix AST symbols with _Py_. Fixes #1637022.Martin v. Löwis2007-01-191-1/+6
* Patch #1355883: Build Python-ast.c and Python-ast.hMartin v. Löwis2006-04-141-30/+30
* Introduce asdl_int_seq, to hold cmpop_ty.Martin v. Löwis2006-04-131-3/+9
* Make _kind types global for C++ compilation.Martin v. Löwis2006-04-111-3/+5
* Make path calculation platform independentJeremy Hylton2006-04-041-1/+1
* Add lineno, col_offset to excephandler to enable future fix forJeremy Hylton2006-04-041-1/+1
* * Fix a refleak of *_attributes.Neal Norwitz2006-04-031-5/+7
* Fix memory leak on attributes.Martin v. Löwis2006-03-021-1/+3
* Don't pollute namespace as bad as before. All the types are static now.Neal Norwitz2006-02-281-7/+7
* Whitespace normalization.Tim Peters2006-02-281-13/+13
* Generate return statement.Martin v. Löwis2006-02-281-0/+1
* Add generation of the version.Martin v. Löwis2006-02-281-1/+2
* Add support for version field on ModulesMartin v. Löwis2006-02-281-0/+1
* Create _ast module.Martin v. Löwis2006-02-271-191/+86
* Avoid reinitializing the types twice.Martin v. Löwis2006-02-271-0/+1
* Stop generating empty arrays.Martin v. Löwis2006-02-261-12/+22
* Fix iterating over cmpop_ty lists.Martin v. Löwis2006-02-261-5/+13
* Generate code to recursively copy an AST intoMartin v. Löwis2006-02-261-59/+206
* Whitespace normalization.Tim Peters2005-12-251-50/+50