summaryrefslogtreecommitdiffstats
path: root/Python/graminit.c
Commit message (Expand)AuthorAgeFilesLines
* Merged revisions 56154-56264 via svnmerge fromGuido van Rossum2007-07-111-5/+15
* Merged revisions 55631-55794 via svnmerge fromGuido van Rossum2007-06-061-58/+64
* Merged revisions 55407-55513 via svnmerge fromGuido van Rossum2007-05-221-1115/+1129
* Merged revisions 55328-55341 via svnmerge fromGuido van Rossum2007-05-151-1135/+1053
* Merged revisions 55225-55227,55229-55269 via svnmerge fromGuido van Rossum2007-05-111-363/+381
* Hide list comp variables and support set comprehensionsNick Coghlan2007-04-151-501/+383
* Looks like this file wasn't checked in.Guido van Rossum2007-03-271-168/+170
* Make ELLIPSIS a separate token. This makes it a syntax error to write ". . ...Georg Brandl2007-03-181-78/+71
* Implement PEP 3115 -- new metaclass syntax and semantics.Guido van Rossum2007-03-181-1/+1
* Provisional implementation of PEP 3104.Jeremy Hylton2007-02-271-789/+809
* Essential changes for print function changes.Guido van Rossum2007-02-091-976/+926
* Some more changes related to the new except syntax and semantics,Guido van Rossum2007-01-101-1/+1
* SF patch 1631942 by Collin Winter:Guido van Rossum2007-01-101-1/+1
* PEP 3107 - Function Annotations thanks to Tony LowndsNeal Norwitz2006-12-281-1256/+1409
* Jiwon Seo's PEP 3102 implementation.Guido van Rossum2006-10-271-16/+29
* Patch #1550786: ellipsis literal.Georg Brandl2006-09-061-69/+69
* Patch #1550800: make exec a function.Georg Brandl2006-09-061-798/+761
* SF patch 1547796 by Georg Brandl -- set literals.Guido van Rossum2006-08-281-7/+23
* Remove support for backticks from the grammar and compiler.Brett Cannon2006-08-251-94/+84
* Killed the <> operator. You must now use !=.Guido van Rossum2006-08-241-104/+102
* Much-needed merge (using svnmerge.py this time) of trunk changes into p3yk.Thomas Wouters2006-05-271-20/+15
* Merge p3yk branch with the trunk up to revision 45595. This breaks a fairThomas Wouters2006-04-211-2/+2
* Checkpoint. 218 tests are okay; 53 are failing. Done so far:Guido van Rossum2006-03-151-10/+7
* Make 'as' an actual keyword when with's future statement is used. NotThomas Wouters2006-02-281-189/+193
* SF patch #1438387, PEP 328: relative and absolute imports.Thomas Wouters2006-02-281-18/+29
* PEP 343 -- the with-statement.Guido van Rossum2006-02-271-600/+649
* PEP 308 implementation, including minor refdocs and some testcases. ItThomas Wouters2006-02-271-517/+579
* Oops, I forgot to check this in with the change to Grammar/Grammar.Neal Norwitz2006-02-261-16/+3
* Wrap long lines in the grammarNeal Norwitz2005-12-181-16/+17
* SF patch #1355913, PEP 341 - Unification of try/except and try/finallyNeal Norwitz2005-12-171-5/+19
* Fix SF bug #1167751, Argument genexp corner caseNeal Norwitz2005-10-211-7/+15
* PEP 342 implementation. Per Guido's comments, the generator throw()Phillip J. Eby2005-08-021-111/+128
* Allow classes to be defined with empty parentheses. This means thatBrett Cannon2005-03-051-6/+7
* SF patch #1007189, multi-line imports, for instance:Anthony Baxter2004-08-311-783/+837
* This is Mark Russell's patch:Michael W. Hudson2004-08-171-15/+14
* PEP-0318, @decorator-style. In Guido's words:Anthony Baxter2004-08-021-1084/+1140
* SF patch #872326: Generator expression implementationRaymond Hettinger2004-05-191-301/+402
* Patch #534304: Implement phase 1 of PEP 263.Martin v. Löwis2002-08-041-4/+17
* Disambiguate the grammar for backtick.Guido van Rossum2002-05-241-57/+71
* John Aycock correctly pointed out that the grammar forTim Peters2002-05-231-3/+2
* Very subtle syntax change: in a list comprehension, the testlist inGuido van Rossum2001-10-151-102/+130
* Implement PEP 238 in its (almost) full glory.Guido van Rossum2001-08-081-192/+196
* Merging the gen-branch into the main line, at Guido's direction. Yay!Tim Peters2001-06-181-658/+677
* Support for three-token characters (**=, >>=, <<=) which was written byThomas Wouters2000-08-241-753/+805
* require list comprehensions to start with a for clauseSkip Montanaro2000-08-221-5/+5
* PEP 214, Extended print Statement, has been accepted by the BDFL.Barry Warsaw2000-08-211-122/+151
* Apply SF patch #101135, adding 'import module as m' and 'from module importThomas Wouters2000-08-171-640/+684
* list comprehensions. seeSkip Montanaro2000-08-121-201/+296
* slightly modified version of Greg Ewing's extended call syntax patchJeremy Hylton2000-03-281-21/+40
* Make first raise argument optionalGuido van Rossum1998-04-091-2/+3