summaryrefslogtreecommitdiff
path: root/Parser
Commit message (Expand)AuthorAgeFilesLines
* Backport of r64212Martin v. Löwis2008-12-131-0/+2
* make sure to give a 'as' and 'with' parser warning even after import statemen...Benjamin Peterson2008-09-251-12/+15
* Added checks for integer overflows, contributed by Google. Some areMartin v. Löwis2008-02-141-0/+3
* Silence a compiler warning.Guido van Rossum2008-01-251-1/+1
* Fixed bug #1915: Python compiles with --enable-unicode=no again. However seve...Christian Heimes2008-01-231-2/+1
* Issue #1882: when compiling code from a string, encoding cookies in theGeorg Brandl2008-01-211-2/+13
* Backport revision 58471, replace PyErr_Print() with PyErr_Clear().Guido van Rossum2007-11-151-1/+1
* Patch #1031213: Decode source line in SyntaxErrors back to its originalMartin v. Löwis2007-09-043-5/+77
* Prefix AST symbols with _Py_. Fixes #1637022.Martin v. Löwis2007-01-191-1/+6
* Fix a bug in the parser's future statement handling that led to "with"Georg Brandl2006-09-241-10/+12
* 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