summaryrefslogtreecommitdiff
path: root/Parser
Commit message (Expand)AuthorAgeFilesLines
* Issue #4279: Fix build of parsermodule under Cygwin.Martin v. Löwis2009-01-111-0/+1
* Remove useless string literal.Georg Brandl2009-01-031-1/+1
* fix __future__ imports when multiple features are givenBenjamin Peterson2008-10-261-3/+0
* 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
* #3367: revert rev. 65539: this change causes test_parser to failAndrew M. Kuchling2008-08-051-1/+1
* #3367 from Kristjan Valur Jonsson:Andrew M. Kuchling2008-08-051-1/+1
* #1683 prevent forking from interfering in threading storageBenjamin Peterson2008-06-131-0/+2
* Merge in release25-maint r60793:Gregory P. Smith2008-06-111-0/+3
* This reverts r63675 based on the discussion in this thread:Gregory P. Smith2008-06-092-21/+21
* Renamed PyString to PyBytesChristian Heimes2008-05-262-21/+21
* Issue2681: the literal 0o8 was wrongly accepted, and evaluated as float(0.0).Amaury Forgeot d'Arc2008-04-241-1/+1
* #2627 Let it be known what pgen generatesBenjamin Peterson2008-04-131-0/+3
* 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
* Patch #2511: Give the "excepthandler" AST item proper attributes by making it...Georg Brandl2008-03-301-5/+2
* 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
* Revert r61969 which added casts to Py_CHARMASK to avoid compiler warnings.Neal Norwitz2008-03-281-8/+0
* Surround p_flags access with #ifdef PY_PARSER_REQUIRES_FUTURE_KEYWORDChristian Heimes2008-03-261-0/+2
* Patch #2477: Added from __future__ import unicode_literalsChristian Heimes2008-03-262-13/+40
* Make Py3k warnings consistent w.r.t. punctuation; also respect theGeorg Brandl2008-03-251-1/+1
* Backport of the print function, using a __future__ import.Eric Smith2008-03-182-28/+10
* Finished backporting PEP 3127, Integer Literal Support and Syntax.Eric Smith2008-03-171-1/+25
* Patch #2167 from calvin: Remove unused importsChristian Heimes2008-02-232-2/+1
* Patch #1759: Backport of PEP 3129 class decoratorsChristian Heimes2008-02-231-2/+2
* Issue 1881. Increased the stack limit from 500 to 1500. Also addedFacundo Batista2008-02-231-1/+1
* Add assertion that we do not blow out newlNeal Norwitz2008-01-271-0/+1
* Fixed bug #1915: Python compiles with --enable-unicode=no again. However seve...Christian Heimes2008-01-231-2/+1
* Add a "const" to make gcc happy.Georg Brandl2008-01-211-1/+1
* Issue #1882: when compiling code from a string, encoding cookies in theGeorg Brandl2008-01-211-2/+13
* Fix #1679: "0x" was taken as a valid integer literal.Georg Brandl2008-01-191-0/+7
* Added bytes and b'' as aliases for str and ''Christian Heimes2008-01-181-0/+8
* Coverity issue CID #167Christian Heimes2008-01-181-0/+1
* Fix #define ordering.Georg Brandl2008-01-072-4/+3
* Make Python compile with --disable-unicode.Georg Brandl2008-01-072-0/+4
* Warning "<> not supported in 3.x" should be enabled only when the -3 option i...Amaury Forgeot d'Arc2007-11-241-1/+1
* Fixed problems in the last commit. Filenames and line numbers weren't reporte...Christian Heimes2007-11-231-9/+11
* Applied patch #1754273 and #1754271 from Thomas GleeChristian Heimes2007-11-231-1/+10
* Change a PyErr_Print() into a PyErr_Clear(),Guido van Rossum2007-10-151-1/+1
* Fix Coverity 180: Don't overallocate. We don't need structs, but pointers.Neal Norwitz2007-10-121-1/+2
* Patch #1031213: Decode source line in SyntaxErrors back to its originalMartin v. Löwis2007-09-043-5/+77
* 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
* Change a very minor inconsistency (that is purely cosmetic) in the ASTBrett Cannon2007-02-111-1/+1