summaryrefslogtreecommitdiff
path: root/Python/graminit.c
Commit message (Expand)AuthorAgeFilesLines
* bpo-30406: Make async and await proper keywords (#1669)Jelle Zijlstra2017-10-051-150/+163
* Issue #28008: Implement PEP 530 -- asynchronous comprehensions.Yury Selivanov2016-09-091-16/+21
* Issue #27985: Implement PEP 526 -- Syntax for Variable Annotations.Yury Selivanov2016-09-081-892/+919
* Issue #9232: Support trailing commas in function declarations.Robert Collins2015-08-121-46/+60
* Issue #24791: Fix grammar regression for call syntax: 'g(*a or b)'.Yury Selivanov2015-08-051-1/+1
* allow test node after ** in calls (closes #24176)Benjamin Peterson2015-05-161-8/+4
* PEP 0492 -- Coroutines with async and await syntax. Issue #24017.Yury Selivanov2015-05-111-1219/+1277
* PEP 448: additional unpacking generalizations (closes #2292)Benjamin Peterson2015-05-051-78/+76
* PEP 465: a dedicated infix operator for matrix multiplication (closes #21176)Benjamin Peterson2014-04-091-216/+219
* Backed out changeset 521232b05b97Benjamin Peterson2013-03-201-264/+241
* fix compiler warningBenjamin Peterson2013-03-191-241/+264
* Issue #13629: Renumber the tokens in token.h to match the _PyParser_TokenName...Meador Inge2012-01-151-15/+15
|\
| * Issue #13629: Renumber the tokens in token.h to match the _PyParser_TokenName...Meador Inge2012-01-151-15/+15
* | Implement PEP 380 - 'yield from' (closes #11682)Nick Coghlan2012-01-131-86/+104
|/
* Regenerate Python/graminit.c.Mark Dickinson2010-07-121-18/+82
* Merged revisions 81220 via svnmerge fromVictor Stinner2010-05-151-1227/+1227
* fix an ambiguity in the grammar from the implementation of extended unpackingBenjamin Peterson2009-09-271-829/+839
* Merged revisions 72924 via svnmerge fromGeorg Brandl2009-05-251-19/+20
* The BDFL has retired! Long live the FLUFL (Friendly Language Uncle For Life)!Brett Cannon2009-04-011-97/+99
* Merged revisions 68523 via svnmerge fromMartin v. Löwis2009-01-111-0/+1
* allow keyword args after *args in a function callBenjamin Peterson2008-08-191-2/+3
* Merged revisions 61440-61441,61443,61445-61448,61451-61452,61455-61457,61459-...Neal Norwitz2008-04-151-0/+2
* Issue #1066: implement PEP 3109, 2/3 of PEP 3134.Collin Winter2007-08-311-30/+21
* 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