1. 8c77b8c bpo-36540: PEP 570 -- Implementation (GH-12701) by Pablo Galindo · 5 years ago
  2. cb0748d bpo-36440: include node names in ParserError messages, instead of numeric IDs (GH-12565) by tyomitch · 5 years ago
  3. 9a0000d bpo-36256: Fix bug in parsermodule when parsing if statements (GH-12477) by Pablo Galindo · 5 years ago
  4. 495da29 bpo-35975: Support parsing earlier minor versions of Python 3 (GH-12086) by Guido van Rossum · 5 years ago
  5. d4fceaa bpo-35877: Make parenthesis optional for named expression in while statement (GH-11724) by Xtreak · 5 years ago
  6. 62c35a8 bpo-35814: Allow same r.h.s. in annotated assignments as in normal ones (GH-11667) by Ivan Levkivskyi · 6 years ago
  7. 8f59ee0 bpo-35224: PEP 572 Implementation (#10497) by Emily Morehouse · 6 years ago
  8. 9932a22 bpo-33416: Add end positions to Python AST (GH-11605) by Ivan Levkivskyi · 6 years ago
  9. e5362ea bpo-33308: Fix a crash in the parser module when convert an ST object. (#6519) by Serhiy Storchaka · 6 years ago
  10. 53f7a7c bpo-32297: Few misspellings found in Python source code comments. (#4803) by Mike · 7 years ago
  11. ac31770 bpo-30406: Make async and await proper keywords (#1669) by Jelle Zijlstra · 7 years ago
  12. a79f4c2 bpo-30070: Fixed leaks and crashes in errors handling in the parser module. (#1131) by Serhiy Storchaka · 7 years ago
  13. f8cb8a1 Issue #27985: Implement PEP 526 -- Syntax for Variable Annotations. by Yury Selivanov · 8 years ago
  14. febc332 Issue #26754: Undocumented support of general bytes-like objects by Serhiy Storchaka · 8 years ago
  15. f95de0e Issue #26754: PyUnicode_FSDecoder() accepted a filename argument encoded as by Serhiy Storchaka · 8 years ago
  16. 9305d83 Issue #26754: PyUnicode_FSDecoder() accepted a filename argument encoded as by Serhiy Storchaka · 8 years ago
  17. 1e8ee9b Issue #23277: Remove unused sys and os imports by Berker Peksag · 8 years ago
  18. 50a2614 Issue #24791: More tests in test_parser by Yury Selivanov · 9 years ago
  19. 7544508 PEP 0492 -- Coroutines with async and await syntax. Issue #24017. by Yury Selivanov · 9 years ago
  20. ce64391 Issue #9517: Move script_helper to the support package. by Berker Peksag · 9 years ago
  21. 025e9eb PEP 448: additional unpacking generalizations (closes #2292) by Benjamin Peterson · 9 years ago
  22. 38c707e Issue #21741: Update 147 test modules to use test discovery. by Zachary Ware · 9 years ago
  23. a51be4c #11963: merge with 3.2. by Ezio Melotti · 11 years ago
  24. e7c3299 #11963: fix Windows buildbots. by Ezio Melotti · 11 years ago
  25. 0d7333e #11963: merge with 3.2. by Ezio Melotti · 11 years ago
  26. 3919184 #11963: avoid printing messages in test_parser. Initial patch by Éric Araujo. by Ezio Melotti · 11 years ago
  27. ba9b404 MERGE: #15512: Remove remnants of debugging code by Jesus Cea · 12 years ago
  28. 676e73b #15512: Remove remnants of debugging code by Jesus Cea · 12 years ago
  29. 88ca04e MERGE: Closes #15512: Correct __sizeof__ support for parser by Jesus Cea · 12 years ago
  30. e9c5318 Closes #15512: Correct __sizeof__ support for parser by Jesus Cea · 12 years ago
  31. 943cab2 Issue #14741: Merge fix from 3.2. by Mark Dickinson · 12 years ago
  32. da029fb Issue #14741: Fix missing support for ellipsis in parser module. by Mark Dickinson · 12 years ago
  33. 72f6095 Issue #14697: Merge fix from 3.2. by Mark Dickinson · 12 years ago
  34. 11c1dee Issue #14697: Fix missing parser module support for set displays and set comprehensions. by Mark Dickinson · 12 years ago
  35. cf360b9 Issue #14701: Add missing support for 'raise ... from' in parser module. by Mark Dickinson · 12 years ago
  36. 9fad160 Issue #14701: Merge fix from 3.2. by Mark Dickinson · 12 years ago
  37. 5740489 Issue #14696: Merge from 3.2 by Mark Dickinson · 12 years ago
  38. 407b3bd Issue #14696: Fix parser module to understand 'nonlocal' declarations. by Mark Dickinson · 12 years ago
  39. b63fd2a Issue #9154: Merge fix from 3.2. by Mark Dickinson · 12 years ago
  40. ea7e9f9 Issue #9154: Fix parser module to understand function annotations. by Mark Dickinson · 12 years ago
  41. 1f7ce62 Implement PEP 380 - 'yield from' (closes #11682) by Nick Coghlan · 13 years ago
  42. f719957d only clear the parser error if it's set (closes #12264) by Benjamin Peterson · 13 years ago
  43. b3aedd4 #9424: Replace deprecated assert* methods in the Python test suite. by Ezio Melotti · 14 years ago
  44. feb3b75 Issue #9130: Validate ellipsis tokens in relative imports. by Mark Dickinson · 14 years ago
  45. 3445b48 Fix symbol numbers in test_parser test. by Mark Dickinson · 14 years ago
  46. 2cc8a5e Issue #9130: Fix validation of relative imports in parser module. by Mark Dickinson · 14 years ago
  47. 2bd61a9 Issue #9128: Fix validation of class decorators in parser module. by Mark Dickinson · 14 years ago
  48. d35a32e Issue #9011: Remove buggy and unnecessary ST->AST compilation code by Mark Dickinson · 14 years ago
  49. 1b37e87 Merged revisions 78093 via svnmerge from by Georg Brandl · 14 years ago
  50. e961593 Merged revisions 77727 via svnmerge from by Ezio Melotti · 15 years ago
  51. 8f326b2 Merged revisions 76052,76522,76591,76689,76697,76733 via svnmerge from by Benjamin Peterson · 15 years ago
  52. aeaa592 Merged revisions 76230 via svnmerge from by Benjamin Peterson · 15 years ago
  53. 4905e80 fix an ambiguity in the grammar from the implementation of extended unpacking by Benjamin Peterson · 15 years ago
  54. c9c0f20 convert old fail* assertions to assert* by Benjamin Peterson · 15 years ago
  55. 8890954 Merged revisions 73072 via svnmerge from by Antoine Pitrou · 15 years ago
  56. 0c31562 Merged revisions 72924 via svnmerge from by Georg Brandl · 15 years ago
  57. 211c625 Issue #1717, stage 2: remove uses of tp_compare in Modules and most Objects. by Mark Dickinson · 16 years ago
  58. eee3116 Merged revisions 67463,67572,67576,67628 via svnmerge from by Georg Brandl · 16 years ago
  59. 4469d0c Merged revisions 67348,67355,67359,67362,67364-67365,67367-67368,67398,67423-67424,67432,67440-67441,67444-67445,67454-67455,67457-67458 via svnmerge from by Benjamin Peterson · 16 years ago
  60. c0747cf Merged revisions 67028,67040,67044,67046,67052,67065,67070,67077,67082 via svnmerge from by Benjamin Peterson · 16 years ago
  61. f216c94 Merged revisions 67066 via svnmerge from by Benjamin Peterson · 16 years ago
  62. 3938a90 Merged revisions 65885,65892,65894,65898 via svnmerge from by Benjamin Peterson · 16 years ago
  63. ee8712c #2621 rename test.test_support to test.support by Benjamin Peterson · 16 years ago
  64. b186d00 Merged revisions 61431,61433-61436,61439,61444,61449-61450,61453,61458,61465,61468,61471-61474,61480,61483-61484,61488,61495-61496,61498,61503-61504,61507,61509-61510,61515-61518 via svnmerge from by Christian Heimes · 16 years ago
  65. 90c3d9b Merged revisions 60481,60485,60489-60492,60494-60496,60498-60499,60501-60503,60505-60506,60508-60509,60523-60524,60532,60543,60545,60547-60548,60552,60554,60556-60559,60561-60562,60569,60571-60572,60574,60576-60583,60585-60586,60589,60591,60594-60595,60597-60598,60600-60601,60606-60612,60615,60617,60619-60621,60623-60625,60627-60629,60631,60633,60635,60647,60650,60652,60654,60656,60658-60659,60664-60666,60668-60670,60672,60676,60678,60680-60683,60685-60686,60688,60690,60692-60694,60697-60700,60705-60706,60708,60711,60714,60720,60724-60730,60732,60736,60742,60744,60746,60748,60750-60751,60753,60756-60757,60759-60761,60763-60764,60766,60769-60770,60774-60784,60787-60789,60793,60796,60799-60809,60812-60813,60815-60821,60823-60826,60828-60829,60831-60834,60836,60838-60839,60846-60849,60852-60854,60856-60859,60861-60870,60874-60875,60880-60881,60886,60888-60890,60892,60894-60898,60900,60902-60906,60908,60911-60917,60919-60920,60922,60926,60929-60931,60933-60935,60937,60939-60941,60943-60954,60959-60961,60963-60969,60971-60976 via svnmerge from by Christian Heimes · 16 years ago
  66. fc158e2 Patch 1144 by David Binger, fix for parser module. With unittest. by Guido van Rossum · 17 years ago
  67. 7eb6ca5 Make test_parser pass after merge. by Guido van Rossum · 17 years ago
  68. b5a755e Merged revisions 56301-56442 via svnmerge from by Guido van Rossum · 17 years ago
  69. 88fc664 * Remove PRINT_ITEM(_TO), PRINT_NEWLINE(_TO) opcodes. by Georg Brandl · 17 years ago
  70. b940e11 SF patch 1631942 by Collin Winter: by Guido van Rossum · 18 years ago
  71. 89f507f Four months of trunk changes (including a few releases...) by Thomas Wouters · 18 years ago
  72. 7cae87c Patch #1550800: make exec a function. by Georg Brandl · 18 years ago
  73. 49fd7fa Merge p3yk branch with the trunk up to revision 45595. This breaks a fair by Thomas Wouters · 18 years ago
  74. 3e0055f Merge ast-branch to head by Jeremy Hylton · 19 years ago
  75. 0d6615f PEP 342 implementation. Per Guido's comments, the generator throw() by Phillip J. Eby · 19 years ago
  76. e890682 Whitespace normalization. by Tim Peters · 19 years ago
  77. f418991 Flush out support for ``class B(): pass`` syntax by adding support to the by Brett Cannon · 19 years ago
  78. 1a4ddae SF patch #1007189, multi-line imports, for instance: by Anthony Baxter · 20 years ago
  79. c2a5a63 PEP-0318, @decorator-style. In Guido's words: by Anthony Baxter · 20 years ago
  80. 354433a SF patch #872326: Generator expression implementation by Raymond Hettinger · 20 years ago
  81. 21d3a32 Combine the functionality of test_support.run_unittest() by Walter Dörwald · 21 years ago
  82. f2715e0 Whitespace normalization. by Tim Peters · 21 years ago
  83. 9caf9c0 Add tests and news entry about parser errors from bug #678518. by Neal Norwitz · 21 years ago
  84. 5e83b7a Teach the parsermodule about floor division. Fixes by Michael W. Hudson · 22 years ago
  85. 32c2ae7 Standardize behavior: no docstrings in test functions. by Guido van Rossum · 22 years ago
  86. 04f357c Get rid of relative imports in all unittests. Now anything that by Barry Warsaw · 22 years ago
  87. 496563a Remove some now-obsolete generator future statements. by Tim Peters · 22 years ago
  88. 2e2be37 Change the PyUnit-based tests to use the test_main() approach. This by Fred Drake · 23 years ago
  89. 6e4f2c0 Use the "st" versions of the "ast" calls in the parser module -- there is by Fred Drake · 23 years ago
  90. cf580c7 Added tests for the new yield support in the parser module. by Fred Drake · 23 years ago
  91. 58422e5 Convert the parser module test to use PyUnit. by Fred Drake · 23 years ago
  92. f785042 a bold attempt to fix things broken by MAL's verify patch: import by Fredrik Lundh · 24 years ago
  93. 3661908 This patch removes all uses of "assert" in the regression test suite by Marc-André Lemburg · 24 years ago
  94. e3fb18c Add more regression tests, including for the import statement variations. by Fred Drake · 24 years ago
  95. e1578ce Added tests to avoid regression on bug #125375. by Fred Drake · 24 years ago
  96. 28f739a Update the parser module to support augmented assignment. by Fred Drake · 24 years ago
  97. 79ca79d Add a minimal test suite for the parser module. by Fred Drake · 24 years ago