summaryrefslogtreecommitdiffstats
path: root/Python/ast.c
Commit message (Expand)AuthorAgeFilesLines
* Implement PEP 3131. Add isidentifier to str.Martin v. Löwis2007-08-151-1/+20
* Remove obsolete ifdef.Martin v. Löwis2007-08-111-2/+0
* Merged revisions 56782-56847 via svnmerge fromGuido van Rossum2007-08-091-0/+2
* Implement PEP 3120.Martin v. Löwis2007-07-291-1/+2
* Merged revisions 56301-56442 via svnmerge fromGuido van Rossum2007-07-181-2/+19
* Merged revisions 56154-56264 via svnmerge fromGuido van Rossum2007-07-111-44/+81
* Merged revisions 55817-55961 via svnmerge fromGuido van Rossum2007-06-131-35/+0
* Minimal changes to make the "freeze" tool work again.Guido van Rossum2007-06-121-0/+3
* Make identifiers str (not str8) objects throughout.Martin v. Löwis2007-06-101-8/+15
* Merged revisions 55631-55794 via svnmerge fromGuido van Rossum2007-06-061-8/+31
* Merged revisions 55407-55513 via svnmerge fromGuido van Rossum2007-05-221-22/+38
* Merged revisions 55328-55341 via svnmerge fromGuido van Rossum2007-05-151-82/+29
* Merged revisions 55325-55327 via svnmerge fromGuido van Rossum2007-05-141-0/+4
* Merged revisions 55225-55227,55229-55269 via svnmerge fromGuido van Rossum2007-05-111-0/+28
* Remove support for u"..." literals.Guido van Rossum2007-05-111-10/+1
* More coding by random modification.Guido van Rossum2007-05-041-2/+3
* Get rid of all #ifdef Py_USING_UNICODE (it is always present now).Guido van Rossum2007-05-031-16/+0
* Checkpoint. Manipulated things so that string literals are alwaysGuido van Rossum2007-04-271-1/+1
* Merged revisions 53952-54987 via svnmerge fromGuido van Rossum2007-04-271-320/+330
* Allow decorators and return annotations to be used together (fixes SF#1697248)Nick Coghlan2007-04-231-1/+1
* Make it compile with C89.Guido van Rossum2007-04-171-1/+2
* Hide list comp variables and support set comprehensionsNick Coghlan2007-04-151-255/+111
* "from ... import x" should not be a syntax error... makeGeorg Brandl2007-03-191-2/+6
* Make ELLIPSIS a separate token. This makes it a syntax error to write ". . ...Georg Brandl2007-03-181-1/+1
* Implement PEP 3115 -- new metaclass syntax and semantics.Guido van Rossum2007-03-181-38/+21
* Provisional implementation of PEP 3104.Jeremy Hylton2007-02-271-2/+25
* Whoops, fix build breakage. There were still a few uses of the bool type.Neal Norwitz2007-02-261-2/+2
* Bytes literal.Thomas Wouters2007-02-231-9/+41
* Essential changes for print function changes.Guido van Rossum2007-02-091-34/+1
* Some more changes related to the new except syntax and semantics,Guido van Rossum2007-01-101-3/+1
* PEP 3107 - Function Annotations thanks to Tony LowndsNeal Norwitz2006-12-281-130/+173
* Four months of trunk changes (including a few releases...)Thomas Wouters2006-12-131-762/+780
* Jiwon Seo's PEP 3102 implementation.Guido van Rossum2006-10-271-63/+178
* Patch #1550786: ellipsis literal.Georg Brandl2006-09-061-4/+7
* Patch #1550800: make exec a function.Georg Brandl2006-09-061-35/+1
* SF patch 1547796 by Georg Brandl -- set literals.Guido van Rossum2006-08-281-24/+44
* Remove the UNARY_CONVERT opcode (was used for backticks). Also bumped up theBrett Cannon2006-08-251-3/+0
* Remove support for backticks from the grammar and compiler.Brett Cannon2006-08-251-8/+1
* Killed the <> operator. You must now use !=.Guido van Rossum2006-08-241-1/+1
* Merge current trunk into p3yk. This includes the PyNumber_Index API change,Thomas Wouters2006-08-211-0/+2
* Merged revisions 46753-51188 via svnmerge fromThomas Wouters2006-08-111-36/+90
* Much-needed merge (using svnmerge.py this time) of trunk changes into p3yk.Thomas Wouters2006-05-271-2/+10
* Merge p3yk branch with the trunk up to revision 45595. This breaks a fairThomas Wouters2006-04-211-72/+107
* 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