summaryrefslogtreecommitdiff
path: root/Python/ast.c
Commit message (Expand)AuthorAgeFilesLines
* [2.7] bpo-34457: Python/ast.c: Add missing NULL check to alias_for_import_nam...Alexey Izbyshev2018-08-221-0/+2
* fix misleading indentation (closes #28139)Benjamin Peterson2016-09-131-1/+1
* Spelling and grammar fixes in code comments and documentationMartin Panter2016-07-281-1/+1
* remove castsBenjamin Peterson2014-08-091-4/+4
* Issue #21591: Handle exec backwards compatibility in the AST builder.Dirkjan Ochtman2014-07-291-0/+12
* Issue #19656: Running Python with the -3 option now also warns aboutSerhiy Storchaka2014-06-011-5/+17
* Issue #9011: AST creation no longer modifies CST for negated numeric literals.Mark Dickinson2012-11-251-10/+15
* Merged revisions 84209, 84214 via svnmerge fromAmaury Forgeot d'Arc2010-08-191-26/+20
* prevent assignment to set literalsBenjamin Peterson2010-06-241-0/+1
* Remove two unneeded branches to an 'if' statement by applying De Morgan's LawBrett Cannon2010-05-051-73/+68
* Partially revert the over-reaching r80813.Brett Cannon2010-05-051-68/+73
* Remove three unneeded variable assignments.Brett Cannon2010-05-051-73/+68
* Issue #2333: Backport set and dict comprehensions syntax.Alexandre Vassalotti2010-01-111-86/+149
* Issue #2335: Backport set literals syntax from Python 3.x.Alexandre Vassalotti2010-01-091-21/+44
* improve several corner cases related with argument names in parenthesisBenjamin Peterson2009-11-191-1/+16
* do a backport of r75928Benjamin Peterson2009-10-291-9/+12
* Removed PyOS_ascii_atof from ast.c, as mentioned in issue 7117.Eric Smith2009-10-271-6/+6
* #7050 fix a SystemError when using tuple unpacking and augmented assignmentBenjamin Peterson2009-10-031-0/+13
* better col_offsets for "for" statements with tuple unpacking #6704Benjamin Peterson2009-08-151-11/+12
* the Slice in x[::] has to have step as None to help the interpreterBenjamin Peterson2009-07-201-1/+15
* when no module is given in a 'from' relative import, make ImportFrom.module NULLBenjamin Peterson2009-06-131-3/+1
* give a better error message when deleting ()Benjamin Peterson2009-06-131-4/+7
* set Print.values to NULL if there are no valuesBenjamin Peterson2009-06-131-9/+12
* allow importing from a module named None if it has an 'as' clauseBenjamin Peterson2009-06-131-4/+6
* prevent import statements from assigning to NoneBenjamin Peterson2009-06-131-11/+26
* keep the slice.step field as NULL if no step expression is givenBenjamin Peterson2009-06-131-8/+1
* remove check for case handled in sub-functionBenjamin Peterson2009-06-111-3/+0
* revert r73361Benjamin Peterson2009-06-111-0/+4
* remove duplicate checkBenjamin Peterson2009-06-111-4/+0
* remove error checks already done in set_context()Benjamin Peterson2009-06-081-25/+0
* remove useless assertionBenjamin Peterson2009-06-081-1/+0
* Allow multiple context managers in one with statement, as proposedGeorg Brandl2009-05-251-20/+41
* #4077: No need to append \n when calling Py_FatalErrorAmaury Forgeot d'Arc2009-01-171-1/+1
* Issue #4461: Safety check in parsenumber (ast.c)Mark Dickinson2008-12-051-0/+1
* always check the return value of NEW_IDENTIFIERBenjamin Peterson2008-11-251-20/+59
* don't segfault when \N escapes are used and unicodedata fails to loadBenjamin Peterson2008-11-211-1/+2
* check for assignment to __debug__ during AST generationBenjamin Peterson2008-11-081-1/+3
* give a py3k warning when 'nonlocal' is used as a variable nameBenjamin Peterson2008-10-251-3/+8
* allow keyword args to be passed in after *args #3473Benjamin Peterson2008-08-191-0/+5
* Issue #3360: Fix incorrect parsing of "020000000000.0".Mark Dickinson2008-07-161-10/+1
* #3219 repeated keyword arguments aren't allowed in function calls anymoreBenjamin Peterson2008-07-011-0/+10
* Merge in release25-maint r60793:Gregory P. Smith2008-06-111-0/+3
* This reverts r63675 based on the discussion in this thread:Gregory P. Smith2008-06-091-14/+14
* warn about parameter tuple unpackingBenjamin Peterson2008-06-081-0/+3
* Warn about assigning to Py3k keywords (True and False)Benjamin Peterson2008-06-081-33/+27
* add an ast_warn helper function to make adding those Py3k warnings easierBenjamin Peterson2008-06-081-7/+15
* change Py3k backquote warning to a SyntaxWarning and add a testBenjamin Peterson2008-06-081-1/+1
* Renamed PyString to PyBytesChristian Heimes2008-05-261-18/+18
* 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