summaryrefslogtreecommitdiffstats
path: root/Parser
Commit message (Expand)AuthorAgeFilesLines
* 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
* Prefix AST symbols with _Py_. Fixes #1637022.Martin v. Löwis2007-01-191-1/+6
* Comment grammarAndrew M. Kuchling2006-10-061-1/+1
* Fix a bug in the parser's future statement handling that led to "with"Georg Brandl2006-09-241-10/+12
* with and as are now keywords. There are some generated files I can't recreate.Neal Norwitz2006-09-061-3/+5
* Handle malloc failure.Neal Norwitz2006-08-131-0/+4
* Handle NULL nodes while parsing. I'm not entirely sure this is correct.Neal Norwitz2006-08-121-0/+6
* Don't truncate if size_t is bigger than uintNeal Norwitz2006-06-121-1/+1
* Fix comment typoAndrew M. Kuchling2006-06-061-1/+1
* Patch #1357836:Neal Norwitz2006-06-021-9/+11
* Patch #1475845: Raise IndentationError for unexpected indent.Martin v. Löwis2006-05-041-1/+3
* C++ compiler cleanup: cast signed to unsignedSkip Montanaro2006-04-181-1/+1
* 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
* more low-hanging fruit to make code compile under a C++ compiler. NotAnthony Baxter2006-04-111-2/+2
* As discussed on python-dev, really fix the PyMem_*/PyObject_* memory APINeal Norwitz2006-04-113-29/+29
* Make _kind types global for C++ compilation.Martin v. Löwis2006-04-111-3/+5
* Fix the code in Parser/ to also compile with C++. This was mostly casts forAnthony Baxter2006-04-117-36/+40
* SF patch #1467512, fix double free with triple quoted string in standard build.Neal Norwitz2006-04-109-37/+45
* Make path calculation platform independentJeremy Hylton2006-04-041-1/+1
* Add lineno, col_offset to excephandler to enable future fix forJeremy Hylton2006-04-042-3/+6
* * Fix a refleak of *_attributes.Neal Norwitz2006-04-031-5/+7
* Years in the making.Tim Peters2006-03-261-39/+44
* Use macro versions instead of function versions when we already know the type.Neal Norwitz2006-03-201-1/+3
* SF #1444030: Fix several potential defects found by Coverity.Hye-Shik Chang2006-03-071-0/+2
* Fix crashing bug in tokenizer, when tokenizing files with non-ASCII bytesThomas Wouters2006-03-021-0/+5
* Fix memory leak on attributes.Martin v. Löwis2006-03-021-1/+3
* Patch #1440601: Add col_offset attribute to AST nodes.Martin v. Löwis2006-03-018-13/+29
* Remove unused field.Martin v. Löwis2006-03-011-1/+0
* Don't pollute namespace as bad as before. All the types are static now.Neal Norwitz2006-02-281-7/+7
* Make 'as' an actual keyword when with's future statement is used. NotThomas Wouters2006-02-282-12/+14
* Change non-ASCII warning into a SyntaxError.Martin v. Löwis2006-02-281-10/+6
* from __future__ import with_statement addon for 'with', mostly written byThomas Wouters2006-02-283-31/+65
* Whitespace normalization.Tim Peters2006-02-282-16/+16
* SF patch #1438387, PEP 328: relative and absolute imports.Thomas Wouters2006-02-281-1/+1
* 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-283-8/+29
* PEP 343 -- the with-statement.Guido van Rossum2006-02-271-0/+1
* Create _ast module.Martin v. Löwis2006-02-271-191/+86
* PEP 308 implementation, including minor refdocs and some testcases. ItThomas Wouters2006-02-271-0/+1
* 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
* Use Py_ssize_t to count the length.Martin v. Löwis2006-02-161-1/+1
* Remove C99ism.Martin v. Löwis2006-02-151-1/+2
* Merge ssize_t branch.Martin v. Löwis2006-02-152-11/+12