summaryrefslogtreecommitdiffstats
path: root/Python/ast.c
Commit message (Expand)AuthorAgeFilesLines
* The compiling struct is now passed around to all AST helpers (see issue 2720)Benjamin Peterson2008-05-031-32/+32
* Patch #2511: Give the "excepthandler" AST item proper attributes by making it...Georg Brandl2008-03-301-3/+3
* Patch #2477: Added from __future__ import unicode_literalsChristian Heimes2008-03-261-11/+14
* Make Py3k warnings consistent w.r.t. punctuation; also respect theGeorg Brandl2008-03-251-1/+1
* Issue #2400: Allow relative imports to "import *".Martin v. Löwis2008-03-191-4/+0
* Issue#2238: some syntax errors from *args or **kwargs expressionsAmaury Forgeot d'Arc2008-03-051-0/+4
* Patch #1759: Backport of PEP 3129 class decoratorsChristian Heimes2008-02-231-24/+46
* Added bytes and b'' as aliases for str and ''Christian Heimes2008-01-181-0/+3
* Make Python compile with --disable-unicode.Georg Brandl2008-01-071-0/+2
* Added filename to compiling struct based on Martin's suggestion.Christian Heimes2007-11-241-1/+3
* And yet another fix for the patch. Paul Moore has send me a note that I've mi...Christian Heimes2007-11-231-8/+9
* How did the comment get there?Christian Heimes2007-11-231-1/+1
* Fixed problems in the last commit. Filenames and line numbers weren't reporte...Christian Heimes2007-11-231-4/+8
* Applied patch #1754273 and #1754271 from Thomas GleeChristian Heimes2007-11-231-0/+4
* Fix Coverity #158: Check the correct variable.Neal Norwitz2007-10-051-1/+1
* Place #ifdef Py_USING_UNICODE around decode_unicode().Georg Brandl2007-08-061-0/+2
* SF patch# 1755885 by Kurt Kaiser: show location of Unicode escape errors.Guido van Rossum2007-07-181-2/+19
* Disallow function calls like foo(None=1).Georg Brandl2007-06-071-0/+4
* Backport PEP 3110's new 'except' syntax to 2.6.Collin Winter2007-05-181-1/+1
* Handle a couple of uncaught errors. This should be backportedNeal Norwitz2007-05-031-0/+4
* Actually raise an exception before calling ast_error_finish.Georg Brandl2007-05-021-0/+2
* Clean up formatting of this file.Jeremy Hylton2007-03-161-2029/+2048
* Patch #1642547: Fix an error/crash when encountering syntax errors in complex...Collin Winter2007-03-161-14/+26
* tabifyJeremy Hylton2007-02-271-2005/+2005
* 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