summaryrefslogtreecommitdiffstats
path: root/Python/ast.c
Commit message (Expand)AuthorAgeFilesLines
* Fix ast_error_finish() and err_input(): filename can be NULLVictor Stinner2010-10-161-1/+6
* Issue #9713, #10114: Parser functions (eg. PyParser_ASTFromFile) expectsVictor Stinner2010-10-161-1/+6
* add column offset to all syntax errorsBenjamin Peterson2010-09-201-3/+8
* Add tests for r84209 (crashes in the Ast builder)Amaury Forgeot d'Arc2010-08-191-3/+3
* Check the return values for all functions returning an ast node.Amaury Forgeot d'Arc2010-08-191-26/+27
* Issue #9011: Remove buggy and unnecessary ST->AST compilation codeMark Dickinson2010-06-171-26/+0
* Recorded merge of revisions 81029 via svnmerge fromAntoine Pitrou2010-05-091-95/+95
* in wide builds, avoid storing high unicode characters from source code with s...Benjamin Peterson2009-10-281-9/+14
* Issue 7147 - remove ability to attempt to build Python without complex number...Skip Montanaro2009-10-181-6/+0
* Merged revisions 75223 via svnmerge fromBenjamin Peterson2009-10-031-0/+13
* star_expr now always has two nodesBenjamin Peterson2009-09-271-3/+1
* fix an ambiguity in the grammar from the implementation of extended unpackingBenjamin Peterson2009-09-271-13/+14
* Merged revisions 74464 via svnmerge fromBenjamin Peterson2009-09-111-11/+10
* In most cases, the parser will protect True, False, and None from being assi...Benjamin Peterson2009-06-281-13/+38
* Merged revisions 73376,73393,73398,73400,73404-73405,73409,73419-73421,73432,...Benjamin Peterson2009-06-281-35/+47
* Merged revisions 73196,73278-73280,73299,73308,73312-73313,73317-73318,73321,...Benjamin Peterson2009-06-111-24/+0
* Merged revisions 72924 via svnmerge fromGeorg Brandl2009-05-251-20/+41
* Issue #5914: Add new C-API function PyOS_string_to_double, to complementMark Dickinson2009-05-031-8/+8
* Merged revisions 68633,68648,68667,68706,68718,68720-68721,68724-68727,68739 ...Benjamin Peterson2009-01-181-1/+1
* Merged revisions 67590 via svnmerge fromMark Dickinson2008-12-051-0/+1
* check the return value of NEW_IDENTIFIER in some more placesBenjamin Peterson2008-11-251-9/+18
* Make ast.c compile on Windows again.Thomas Heller2008-11-251-1/+2
* Merged revisions 67373 via svnmerge fromBenjamin Peterson2008-11-251-15/+47
* Merged revisions 67320 via svnmerge fromBenjamin Peterson2008-11-211-1/+2
* Merged revisions 67171 via svnmerge fromBenjamin Peterson2008-11-081-0/+1
* Latin-1 source code was not being properly decoded when passed throughBrett Cannon2008-10-171-5/+1
* allow keyword args after *args in a function callBenjamin Peterson2008-08-191-0/+5
* Rename PyUnicode_AsString -> _PyUnicode_AsString andMarc-André Lemburg2008-08-071-1/+1
* Fix uninitialized memory read for cases like def(f, *): passJeremy Hylton2008-07-171-5/+11
* Merged revisions 64622 via svnmerge fromBenjamin Peterson2008-07-011-1/+9
* Merged revisions 64114 via svnmerge fromAmaury Forgeot d'Arc2008-06-181-0/+3
* Renamed PyString to PyBytesChristian Heimes2008-05-261-11/+11
* Merged revisions 62425-62429,62434-62436,62441,62444,62446-62448,62450-62455,...Christian Heimes2008-05-041-26/+33
* Reverted r62128 on Guido's ordersBenjamin Peterson2008-04-051-1/+1
* #2541 Allow unicode escapes in raw stringsBenjamin Peterson2008-04-031-1/+1
* Merged revisions 62047 via svnmerge fromNeal Norwitz2008-03-311-3/+3
* Merged revisions 61952-61953 via svnmerge fromChristian Heimes2008-03-261-13/+11
* Merged revisions 61538-61540,61556,61559-61560,61563,61565,61571,61575-61576,...Christian Heimes2008-03-191-4/+0
* Merged revisions 61239-61249,61252-61257,61260-61264,61269-61275,61278-61279,...Christian Heimes2008-03-161-0/+4
* Patch from Georg Brandl: Fix co_lineno of decorated function and class object...Christian Heimes2008-02-231-0/+6
* More PyImport_ImportModule -> PyImport_ImportModuleNoBlockChristian Heimes2008-01-031-1/+1
* #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT.Christian Heimes2007-12-191-1/+1
* Issue #1573, second attempt:Amaury Forgeot d'Arc2007-12-091-3/+8
* Fixed #1573: Improper use of the keyword-only syntax makes the parser crashChristian Heimes2007-12-081-2/+2
* Cleanup: Replaced most PyInt_ aliases with PyLong_ and disabled the aliases i...Christian Heimes2007-12-021-2/+2
* Merged revisions 59107-59186 via svnmerge fromGuido van Rossum2007-11-261-0/+2
* PyString_AsString is permissive and accepts unicode strings.Amaury Forgeot d'Arc2007-11-221-1/+1
* Minimal change that disables (AFAICT) the interpolation of \u and \U insideGuido van Rossum2007-11-121-8/+12
* Merging the py3k-pep3137 branch back into the py3k branch.Guido van Rossum2007-11-061-5/+4
* Merged revisions 58221-58741 via svnmerge fromGuido van Rossum2007-11-011-1/+1