summaryrefslogtreecommitdiffstats
path: root/Python/ast.c
Commit message (Expand)AuthorAgeFilesLines
* Bug #1588287: fix invalid assertion for `1,2` in debug builds.Neal Norwitz2006-11-041-0/+1
* Bug #1557232: fix seg fault with def f((((x)))) and def f(((x),)).Neal Norwitz2006-09-221-2/+24
* with and as are now keywords. There are some generated files I can't recreate.Neal Norwitz2006-09-061-12/+0
* M-x untabifyNeal Norwitz2006-09-051-821/+821
* Add a comment about some refactoring. (There's probably more that should be ...Neal Norwitz2006-09-051-6/+5
* Bug #1520864 (again): unpacking singleton tuples in list comprehensions andNeal Norwitz2006-09-051-4/+12
* Klocwork made another run and found a bunch more problems.Neal Norwitz2006-08-121-0/+2
* Add some asserts and update commentsNeal Norwitz2006-07-301-2/+3
* Patch #1531113: Fix augmented assignment with yield expressions.Neal Norwitz2006-07-301-7/+9
* Handle more memory allocation failures without crashing.Neal Norwitz2006-07-211-2/+4
* Bug #1520864: unpacking singleton tuples in for loop (for x, in) work again.Neal Norwitz2006-07-121-2/+6
* Fix SF bug 1441486: bad unary minus folding in compiler.Neil Schemenauer2006-07-091-20/+53
* Fix AST compiler bug #1501934: incorrect LOAD/STORE_GLOBAL generation.Neil Schemenauer2006-07-091-2/+3
* Fix SF bug #1519018: 'as' is now validated properly in import statementsNeal Norwitz2006-07-081-1/+12
* Replace Py_BuildValue("OO") by PyTuple_Pack.Georg Brandl2006-05-261-1/+1
* Fix #1474677, non-keyword argument following keyword.Neal Norwitz2006-05-191-0/+5
* - Bug #1487966: Fix SystemError with conditional expression in assignmentNeal Norwitz2006-05-151-0/+3
* Fix more ssize_t issues.Martin v. Löwis2006-04-221-1/+1
* Introduce asdl_int_seq, to hold cmpop_ty.Martin v. Löwis2006-04-131-4/+4
* Convert 0 to their respective enum types. ConvertMartin v. Löwis2006-04-111-11/+11
* low-hanging fruit in Python/ - g++ still hates all the enum_kind declarationsAnthony Baxter2006-04-111-19/+19
* Add lineno, col_offset to excephandler to enable future fix forJeremy Hylton2006-04-041-28/+48
* Fix SF bug #1458903 with AST compiler.Neal Norwitz2006-03-271-4/+11
* Forward port MvL's fix in 43227:Neal Norwitz2006-03-231-0/+4
* Fix bug 1441408 where a double colon didn't trigger extended slice semantics ...Nick Coghlan2006-03-171-8/+12
* SF #1444030: Fix several potential defects found by Coverity.Hye-Shik Chang2006-03-071-0/+2
* Patch #1440601: Add col_offset attribute to AST nodes.Martin v. Löwis2006-03-011-81/+91
* Fix uninitialized value. (Why are we using bools instead of ints, like we doThomas Wouters2006-03-011-1/+1
* Make 'as' an actual keyword when with's future statement is used. NotThomas Wouters2006-02-281-2/+2
* Remove asdl_seq_APPEND() and simplify asdl seq implementation.Jeremy Hylton2006-02-281-62/+56
* SF patch #1438387, PEP 328: relative and absolute imports.Thomas Wouters2006-02-281-12/+33
* PEP 343 -- the with-statement.Guido van Rossum2006-02-271-2/+44
* Fix parsing of subscriptlist.Jeremy Hylton2006-02-271-4/+30
* And some more cleanup.Thomas Wouters2006-02-271-2/+2
* Clean up from-import handling.Thomas Wouters2006-02-271-22/+21
* Simplify ast_for_trailer() in anticipation of more changes.Jeremy Hylton2006-02-271-17/+11
* Fix old not-reading-pep-308-right artifact.Thomas Wouters2006-02-271-1/+1
* Fix assertion errors in debug build, brought on by PEP 308 patch.Thomas Wouters2006-02-271-1/+1
* PEP 308 implementation, including minor refdocs and some testcases. ItThomas Wouters2006-02-271-3/+37
* Use C-style commentNeal Norwitz2006-02-051-1/+1
* Improved handling of syntax errors.Jeremy Hylton2006-01-271-35/+74
* Repair bizarre indentation created by VC 7.1.Tim Peters2006-01-081-1/+1
* alias_for_import_name(): Dueling compiler warnings ;-)Tim Peters2006-01-081-1/+2
* Fix icc warnings: conversion from "long" to "int" may lose significant bitsNeal Norwitz2006-01-081-5/+4
* Fix icc warnings: shadowing local variablesNeal Norwitz2006-01-071-2/+1
* SF#1391872Fredrik Lundh2005-12-291-2/+2
* Fix SF bug #1072182, problems with signed characters.Neal Norwitz2005-12-191-1/+1
* Cleanup a bit and make things more consistent.Neal Norwitz2005-12-181-135/+85
* SF patch #1355913, PEP 341 - Unification of try/except and try/finallyNeal Norwitz2005-12-171-50/+62
* Merge from ast-arena. This reduces the code in Python/ast.c by ~300 lines,Neal Norwitz2005-12-171-541/+250