1. a6f6edb Issue #27243: Fix __aiter__ protocol by Yury Selivanov · 8 years ago
  2. c6ec54d Issue #26647: Fix typo in test_grammar by Victor Stinner · 8 years ago
  3. 14acf5f Issue #24791: Fix grammar regression for call syntax: 'g(*a or b)'. by Yury Selivanov · 9 years ago
  4. 13db76a Issue #23182: Merge with 3.4 by Zachary Ware · 9 years ago
  5. ce17f76 Issue #23182: PEP8-ify the annotation grammar tests. Patch by Ian Lee. by Zachary Ware · 9 years ago
  6. f315c1c Issue #24687: Plug refleak on SyntaxError in function parameters annotations. by Yury Selivanov · 9 years ago
  7. 8fb307c Issue #24619: New approach for tokenizing async/await. by Yury Selivanov · 9 years ago
  8. de12b79 allow test node after ** in calls (closes #24176) by Benjamin Peterson · 9 years ago
  9. 7544508 PEP 0492 -- Coroutines with async and await syntax. Issue #24017. by Yury Selivanov · 9 years ago
  10. 025e9eb PEP 448: additional unpacking generalizations (closes #2292) by Benjamin Peterson · 9 years ago
  11. 38c707e Issue #21741: Update 147 test modules to use test discovery. by Zachary Ware · 9 years ago
  12. 2617199 Merge issue #21669 from 3.4 by Nick Coghlan · 10 years ago
  13. 5b1fdc1 Issue #21669: Special case print & exec syntax errors by Nick Coghlan · 10 years ago
  14. 3e43979 merge 3.4 (#21642) by Benjamin Peterson · 10 years ago
  15. c416162 allow the keyword else immediately after (no space) an integer (closes #21642) by Benjamin Peterson · 10 years ago
  16. d51374e PEP 465: a dedicated infix operator for matrix multiplication (closes #21176) by Benjamin Peterson · 10 years ago
  17. bcfcfc5 use assertEqual instead of the deprecated assertEquals (closes #20877) by Benjamin Peterson · 10 years ago
  18. 34ce99f Mangle __parameters in __annotations__ dict properly. Issue #20625. by Yury Selivanov · 11 years ago
  19. 1f7ce62 Implement PEP 380 - 'yield from' (closes #11682) by Nick Coghlan · 13 years ago
  20. b3d188f #8414: merge with 3.2. by Ezio Melotti · 13 years ago
  21. 6cc5bf7 #8414: add more tests for "assert". Initial patch by Gregory Nofi. by Ezio Melotti · 13 years ago
  22. 758888d don't restrict unexpected EOF errors to the first line (closes #12216) by Benjamin Peterson · 13 years ago
  23. c8507bf use better naming scheme by Benjamin Peterson · 13 years ago
  24. 3b3499b #11565: Merge with 3.1. by Ezio Melotti · 13 years ago
  25. 1392500 #11565: Fix several typos. Patch by Piotr Kasprzyk. by Ezio Melotti · 13 years ago
  26. 19f2aeb Merged revisions 86596 via svnmerge from by Ezio Melotti · 14 years ago
  27. 9b86b9a Merged revisions 79100 via svnmerge from by Florent Xicluna · 14 years ago
  28. f6489f9 Merged revisions 75264,75268,75293,75318,75391-75392,75436,75478,75971,76003,76058,76140-76141,76231,76380,76428-76429 via svnmerge from by Benjamin Peterson · 15 years ago
  29. ab91fde Merged revisions 73715 via svnmerge from by Georg Brandl · 15 years ago
  30. c9c0f20 convert old fail* assertions to assert* by Benjamin Peterson · 15 years ago
  31. f17ab89 Merged revisions 73031 via svnmerge from by Benjamin Peterson · 15 years ago
  32. a933e52 add grammar tests for nonlocal by Benjamin Peterson · 16 years ago
  33. 2d735bc allow keyword args after *args in a function call by Benjamin Peterson · 16 years ago
  34. 35c8658 Merged revisions 64119,64147,64150,64165,64219-64221,64229-64230,64233,64235,64253,64278,64280,64301,64303,64320,64328,64338-64339 via svnmerge from by Amaury Forgeot d'Arc · 16 years ago
  35. ee8712c #2621 rename test.test_support to test.support by Benjamin Peterson · 16 years ago
  36. d8b690f #2895: don't crash with bytes as keyword argument names. by Georg Brandl · 16 years ago
  37. dd15f6c Merged revisions 61239-61249,61252-61257,61260-61264,61269-61275,61278-61279,61285-61286,61288-61290,61298,61303-61305,61312-61314,61317,61329,61332,61344,61350-61351,61363-61376,61378-61379,61382-61383,61387-61388,61392,61395-61396,61402-61403 via svnmerge from by Christian Heimes · 16 years ago
  38. 969fe57 Merged revisions 60245-60277 via svnmerge from by Christian Heimes · 17 years ago
  39. fceab5a Merged revisions 60080-60089,60091-60093 via svnmerge from by Georg Brandl · 17 years ago
  40. a37d4c6 Removed PyInt_GetMax and sys.maxint by Christian Heimes · 17 years ago
  41. 828f04a Issue #1066: implement PEP 3109, 2/3 of PEP 3134. by Collin Winter · 17 years ago
  42. b5a755e Merged revisions 56301-56442 via svnmerge from by Guido van Rossum · 17 years ago
  43. cd16bf6 Merged revisions 55817-55961 via svnmerge from by Guido van Rossum · 17 years ago
  44. 1bc535d Merged revisions 55328-55341 via svnmerge from by Guido van Rossum · 17 years ago
  45. d8faa36 Merged revisions 53952-54987 via svnmerge from by Guido van Rossum · 17 years ago
  46. 71011e2 Allow decorators and return annotations to be used together (fixes SF#1697248) by Nick Coghlan · 17 years ago
  47. a18af4e PEP 3114: rename .next() to .__next__() and add next() builtin. by Georg Brandl · 17 years ago
  48. 650f0d0 Hide list comp variables and support set comprehensions by Nick Coghlan · 17 years ago
  49. dde0028 Make ELLIPSIS a separate token. This makes it a syntax error to write ". . ." for Ellipsis. by Georg Brandl · 17 years ago
  50. 0240b92 Two more patches by Tony Lownds (SF# 1607548). by Guido van Rossum · 17 years ago
  51. 221085d Change all the function attributes from func_* -> __*__. This gets rid by Neal Norwitz · 17 years ago
  52. be19ed7 Fix most trivially-findable print statements. by Guido van Rossum · 18 years ago
  53. e2a383d Rip out 'long' and 'L'-suffixed integer literals. (Rough first cut.) by Guido van Rossum · 18 years ago
  54. b940e11 SF patch 1631942 by Collin Winter: by Guido van Rossum · 18 years ago
  55. c150536 PEP 3107 - Function Annotations thanks to Tony Lownds by Neal Norwitz · 18 years ago
  56. 89f507f Four months of trunk changes (including a few releases...) by Thomas Wouters · 18 years ago
  57. 4f72a78 Jiwon Seo's PEP 3102 implementation. by Guido van Rossum · 18 years ago
  58. 52318d6 Patch #1550786: ellipsis literal. by Georg Brandl · 18 years ago
  59. 7cae87c Patch #1550800: make exec a function. by Georg Brandl · 18 years ago
  60. 86e58e2 SF patch 1547796 by Georg Brandl -- set literals. by Guido van Rossum · 18 years ago
  61. 0b70cca Remove usage of backticks. by Brett Cannon · 18 years ago
  62. b053cd8 Killed the <> operator. You must now use !=. by Guido van Rossum · 18 years ago
  63. 47b9ff6 Restructure comparison dramatically. There is no longer a default by Guido van Rossum · 18 years ago
  64. e2b70bc Get rid of dict.has_key(). Boy this has a lot of repercussions! by Guido van Rossum · 18 years ago
  65. 0e3f591 Merged revisions 46753-51188 via svnmerge from by Thomas Wouters · 18 years ago
  66. 49fd7fa Merge p3yk branch with the trunk up to revision 45595. This breaks a fair by Thomas Wouters · 18 years ago
  67. 03bdedd Update comments by Neal Norwitz · 18 years ago
  68. 7b03bad Test case to cover subscription bug from SF 1333982 by Jeremy Hylton · 18 years ago
  69. dca3b9c PEP 308 implementation, including minor refdocs and some testcases. It by Thomas Wouters · 18 years ago
  70. f8d403d SF #1377897, Bus error in ast by Neal Norwitz · 19 years ago
  71. 3e0055f Merge ast-branch to head by Jeremy Hylton · 19 years ago
  72. 4ebc7e3 Add test for ``class B1(): pass``. by Brett Cannon · 19 years ago
  73. 1a4ddae SF patch #1007189, multi-line imports, for instance: by Anthony Baxter · 20 years ago
  74. 354433a SF patch #872326: Generator expression implementation by Raymond Hettinger · 20 years ago
  75. 70a6b49 Replace backticks with repr() or "%r" by Walter Dörwald · 21 years ago
  76. 6c9e130 - Removed FutureWarnings related to hex/oct literals and conversions by Guido van Rossum · 21 years ago
  77. f545baa Whitespace normalization. by Tim Peters · 21 years ago
  78. 4d508ad Fix for SF [ 734869 ] Lambda functions in list comprehensions by Jeremy Hylton · 21 years ago
  79. 66b1259 SF #660455 : patch by NNorwitz. by Guido van Rossum · 22 years ago
  80. f0253f2 Restore the hex/oct constant tests that Barry commented out for fear by Guido van Rossum · 22 years ago
  81. 18bd112 Fixed three exceptions in the Plain integers test, although I'm not by Barry Warsaw · 22 years ago
  82. 266e6b1 Quite down some FutureWarnings. by Barry Warsaw · 22 years ago
  83. 408b6d3 Complete the absolute import patch for the test suite. All relative by Barry Warsaw · 22 years ago
  84. 4ab7adb The initial patch #468662 was not applied quite verbatim. This should one by Finn Bock · 23 years ago
  85. 7d3dff2 SF patch [ #468662 ] Allow jython to complete test_grammar by Jeremy Hylton · 23 years ago
  86. 80d373c Test case for SF bugs #463359 and #462937, added to test_grammar for lack of by Thomas Wouters · 23 years ago
  87. dbb718f Make these modules work when Python is compiled without Unicode support. by Guido van Rossum · 23 years ago
  88. 9f44815 Fix another test still expecting overflow on big int literals. by Tim Peters · 23 years ago
  89. e241e29 Add test for a list comprehension that is nested in the left-hand part by Jeremy Hylton · 23 years ago
  90. 2922ea8 Add test case for global stmt at module level. by Jeremy Hylton · 23 years ago
  91. f828e2d Add simple section for assert, including assert w/ lambdas by Jeremy Hylton · 24 years ago
  92. 4779399 Add test for syntax error on "x = 1 + 1". by Jeremy Hylton · 24 years ago
  93. 97a0167 update test cases for recent compiler changes: exec/import * in nested by Jeremy Hylton · 24 years ago
  94. 10fb386 Whitespace normalization. by Tim Peters · 24 years ago
  95. 3faa52e Allow 'continue' inside 'try' clause SF patch 102989 by Thomas Wouters by Jeremy Hylton · 24 years ago
  96. 483638c Undo recent change that banned using import to bind a global, as per by Jeremy Hylton · 24 years ago
  97. ac25a38 add test for illegal imports by Jeremy Hylton · 24 years ago
  98. 619eea6 PEP 227 implementation by Jeremy Hylton · 24 years ago
  99. 92e9f29 add extra tests to verify that co_varnames is being set up properly by Jeremy Hylton · 24 years ago
  100. 578ceee Add simple test of list comprehension that uses a name that isn't by Jeremy Hylton · 24 years ago