summaryrefslogtreecommitdiffstats
path: root/Python/graminit.c
Commit message (Expand)AuthorAgeFilesLines
* Merged revisions 68523 via svnmerge fromMartin v. Löwis2009-01-111-0/+1
* allow keyword args to be passed in after *args #3473Benjamin Peterson2008-08-191-2/+3
* #2627 Let it be known what pgen generatesBenjamin Peterson2008-04-131-0/+2
* Patch #1759: Backport of PEP 3129 class decoratorsChristian Heimes2008-02-231-1166/+1180
* Backport PEP 3110's new 'except' syntax to 2.6.Collin Winter2007-05-181-2/+3
* with and as are now keywords. There are some generated files I can't recreate.Neal Norwitz2006-09-061-10/+7
* Update graminit.c for the fix for #1488915, Multiple dots in relative importThomas Wouters2006-05-251-20/+15
* Part two of the fix for SF bug #1466641: Regenerate graminit.c and add testThomas Wouters2006-04-121-2/+2
* 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
* Oops, missed some renamings.Guido van Rossum1997-05-071-1/+1
* OK, ready to make 'assert' a keyword (instead of '__assert__').Guido van Rossum1997-04-161-1/+1
* Added assert grammar.Guido van Rossum1997-04-021-494/+522
* Disable support for access statementGuido van Rossum1996-08-121-587/+535
* Changes for slice and ellipsesGuido van Rossum1996-07-301-103/+144
* changes for power (**) operatorGuido van Rossum1996-01-121-325/+359
* new grammarGuido van Rossum1995-07-071-74/+142
* Grammar changedGuido van Rossum1995-01-071-466/+480
* Merge back to main trunkGuido van Rossum1994-08-301-78/+94
* change syntactical position of lambdef (was an atom, now is a test)Guido van Rossum1993-11-301-73/+81
* * import.c (get_module): pass .py filename to parse_file, not .pyc filename!Guido van Rossum1993-11-301-625/+627
* Committing the correct graminit.c; also changed confusing comments in Grammar.Guido van Rossum1993-10-271-717/+700
* * compile.[ch]: support for lambda()Guido van Rossum1993-10-261-678/+704
* * bltinmodule.c: removed exec() built-in function.Guido van Rossum1993-10-181-398/+435
* * Added gmtime/localtime/mktime and SYSV timezone globals to timemodule.c.Guido van Rossum1993-06-171-16/+25