1. 37d66d7 bpo-37253: Add _PyCompilerFlags_INIT macro (GH-14018) by Victor Stinner · 5 years ago
  2. 530f506 bpo-36974: tp_print -> tp_vectorcall_offset and tp_reserved -> tp_as_async (GH-13464) by Jeroen Demeyer · 5 years ago
  3. 09415ff fix warnings by adding more const (GH-12924) by Inada Naoki · 5 years ago
  4. cb0748d bpo-36440: include node names in ParserError messages, instead of numeric IDs (GH-12565) by tyomitch · 6 years ago
  5. 9a0000d bpo-36256: Fix bug in parsermodule when parsing if statements (GH-12477) by Pablo Galindo · 6 years ago
  6. 1b304f9 Remove d_initial from the parser as it is unused (GH-12212) by tyomitch · 6 years ago
  7. 495da29 bpo-35975: Support parsing earlier minor versions of Python 3 (GH-12086) by Guido van Rossum · 6 years ago
  8. dcfcd14 bpo-35766: Merge typed_ast back into CPython (GH-11645) by Guido van Rossum · 6 years ago
  9. 9932a22 bpo-33416: Add end positions to Python AST (GH-11605) by Ivan Levkivskyi · 6 years ago
  10. 62be742 bpo-33012: Fix invalid function cast warnings with gcc 8. (GH-6749) by Serhiy Storchaka · 6 years ago
  11. 3bb183d bpo-35177, Python-ast.h: Fix "Yield" compiler warning (GH-10664) by Victor Stinner · 6 years ago
  12. 5f2df88 bpo-35177: Add dependencies between header files (GH-10361) by Victor Stinner · 6 years ago
  13. e5362ea bpo-33308: Fix a crash in the parser module when convert an ST object. (#6519) by Serhiy Storchaka · 6 years ago
  14. e8b1965 bpo-23699: Use a macro to reduce boilerplate code in rich comparison functions (GH-793) by stratakis · 7 years ago
  15. a79f4c2 bpo-30070: Fixed leaks and crashes in errors handling in the parser module. (#1131) by Serhiy Storchaka · 7 years ago
  16. 228b12e Issue #28999: Use Py_RETURN_NONE, Py_RETURN_TRUE and Py_RETURN_FALSE wherever by Serhiy Storchaka · 8 years ago
  17. 0651583 Replaced outdated macros _PyUnicode_AsString and _PyUnicode_AsStringAndSize by Serhiy Storchaka · 8 years ago
  18. 53595c4 replace custom validation logic in the parse module with a simple DFA validator (closes #26526) by Benjamin Peterson · 8 years ago
  19. ef1585e Issue #25923: Added more const qualifiers to signatures of static and private functions. by Serhiy Storchaka · 9 years ago
  20. 2d06e84 Issue #25923: Added the const qualifier to static constant arrays. by Serhiy Storchaka · 9 years ago
  21. 5c4064e Issue #25421: __sizeof__ methods of builtin types now use dynamic basic size. by Serhiy Storchaka · 9 years ago
  22. 14acf5f Issue #24791: Fix grammar regression for call syntax: 'g(*a or b)'. by Yury Selivanov · 9 years ago
  23. de12b79 allow test node after ** in calls (closes #24176) by Benjamin Peterson · 9 years ago
  24. 7544508 PEP 0492 -- Coroutines with async and await syntax. Issue #24017. by Yury Selivanov · 9 years ago
  25. 025e9eb PEP 448: additional unpacking generalizations (closes #2292) by Benjamin Peterson · 9 years ago
  26. 009b811 Removed unintentional trailing spaces in non-external and non-generated C files. by Serhiy Storchaka · 10 years ago
  27. f4c68db (Merge 3.3) parser: fix usage of Py_BuildValue() to build a parser error by Victor Stinner · 11 years ago
  28. 5f8d485 parser: fix usage of Py_BuildValue() to build a parser error by Victor Stinner · 11 years ago
  29. 14e461d Close #11619: The parser and the import machinery do not encode Unicode by Victor Stinner · 11 years ago
  30. 6684bdf Issue #18408: Fix typo in build_node_tree() of the parser module by Victor Stinner · 11 years ago
  31. df4572c Issue #18408: parser module: fix error handling in node2tuple() by Victor Stinner · 11 years ago
  32. 3bd6abd Issue #18408: Fix parser.sequence2st() and parser.tuple2st(): raise MemoryError by Victor Stinner · 11 years ago
  33. 9101e23 Issue #15989: Fix several occurrences of integer overflow by Serhiy Storchaka · 12 years ago
  34. 7898043 Issue #15989: Fix several occurrences of integer overflow by Serhiy Storchaka · 12 years ago
  35. 5b89840 Issue #16714: use 'raise' exceptions, don't 'throw'. by Andrew Svetlov · 12 years ago
  36. 737fb89 Issue #16714: use 'raise' exceptions, don't 'throw'. by Andrew Svetlov · 12 years ago
  37. 721738f Issue #15604: Update uses of PyObject_IsTrue() to check for and handle errors correctly. by Antoine Pitrou · 12 years ago
  38. 6f430e4 Issue #15604: Update uses of PyObject_IsTrue() to check for and handle errors correctly. by Antoine Pitrou · 12 years ago
  39. 88ca04e MERGE: Closes #15512: Correct __sizeof__ support for parser by Jesus Cea · 12 years ago
  40. e9c5318 Closes #15512: Correct __sizeof__ support for parser by Jesus Cea · 12 years ago
  41. 943cab2 Issue #14741: Merge fix from 3.2. by Mark Dickinson · 12 years ago
  42. da029fb Issue #14741: Fix missing support for ellipsis in parser module. by Mark Dickinson · 12 years ago
  43. 72f6095 Issue #14697: Merge fix from 3.2. by Mark Dickinson · 12 years ago
  44. 11c1dee Issue #14697: Fix missing parser module support for set displays and set comprehensions. by Mark Dickinson · 12 years ago
  45. cf360b9 Issue #14701: Add missing support for 'raise ... from' in parser module. by Mark Dickinson · 12 years ago
  46. 9fad160 Issue #14701: Merge fix from 3.2. by Mark Dickinson · 12 years ago
  47. 5740489 Issue #14696: Merge from 3.2 by Mark Dickinson · 12 years ago
  48. 407b3bd Issue #14696: Fix parser module to understand 'nonlocal' declarations. by Mark Dickinson · 12 years ago
  49. b63fd2a Issue #9154: Merge fix from 3.2. by Mark Dickinson · 12 years ago
  50. ea7e9f9 Issue #9154: Fix parser module to understand function annotations. by Mark Dickinson · 12 years ago
  51. 1f7ce62 Implement PEP 380 - 'yield from' (closes #11682) by Nick Coghlan · 13 years ago
  52. bd928fe Rename _Py_identifier to _Py_IDENTIFIER. by Martin v. Löwis · 13 years ago
  53. 1ee1b6f Use identifier API for PyObject_GetAttrString. by Martin v. Löwis · 13 years ago
  54. f0cdbad always clear parser error by Benjamin Peterson · 13 years ago
  55. f719957d only clear the parser error if it's set (closes #12264) by Benjamin Peterson · 13 years ago
  56. 7f2fee3 Issue #10785: Store the filename as Unicode in the Python parser. by Victor Stinner · 14 years ago
  57. 4969f70 #11515: Merge with 3.1. by Ezio Melotti · 14 years ago
  58. 42da663 #11515: fix several typos. Patch by Piotr Kasprzyk. by Ezio Melotti · 14 years ago
  59. e239d23 Issue #6697: Fixed instances of _PyUnicode_AsString() result not checked for NULL by Alexander Belopolsky · 14 years ago
  60. e5b99f0 Remove redundant includes of headers that are already included by Python.h. by Georg Brandl · 14 years ago
  61. 0dce815 Merged revisions 82555 via svnmerge from by Mark Dickinson · 14 years ago
  62. feb3b75 Issue #9130: Validate ellipsis tokens in relative imports. by Mark Dickinson · 14 years ago
  63. 1b9b572 Merged revisions 82552-82553 via svnmerge from by Mark Dickinson · 14 years ago
  64. 2cc8a5e Issue #9130: Fix validation of relative imports in parser module. by Mark Dickinson · 14 years ago
  65. a441e64 Merged revisions 82537 via svnmerge from by Mark Dickinson · 14 years ago
  66. 2bd61a9 Issue #9128: Fix validation of class decorators in parser module. by Mark Dickinson · 14 years ago
  67. 7f14f0d Recorded merge of revisions 81032 via svnmerge from by Antoine Pitrou · 14 years ago
  68. f95a1b3 Recorded merge of revisions 81029 via svnmerge from by Antoine Pitrou · 14 years ago
  69. 4905e80 fix an ambiguity in the grammar from the implementation of extended unpacking by Benjamin Peterson · 15 years ago
  70. 0c31562 Merged revisions 72924 via svnmerge from by Georg Brandl · 15 years ago
  71. 37d1c18 Merged revisions 72645 via svnmerge from by Antoine Pitrou · 15 years ago
  72. e94c679 Issue #1717: rename tp_compare to tp_reserved. I'll change the by Mark Dickinson · 16 years ago
  73. 211c625 Issue #1717, stage 2: remove uses of tp_compare in Modules and most Objects. by Mark Dickinson · 16 years ago
  74. eee3116 Merged revisions 67463,67572,67576,67628 via svnmerge from by Georg Brandl · 16 years ago
  75. 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
  76. c0747cf Merged revisions 67028,67040,67044,67046,67052,67065,67070,67077,67082 via svnmerge from by Benjamin Peterson · 16 years ago
  77. f216c94 Merged revisions 67066 via svnmerge from by Benjamin Peterson · 16 years ago
  78. 4cc0f24 Rename PyUnicode_AsString -> _PyUnicode_AsString and by Marc-André Lemburg · 16 years ago
  79. 30704ea0 Remove "ast" aliases from the parser module. by Georg Brandl · 16 years ago
  80. e43d33a #3247 Get rid of Py_FindMethod; use tp_members instead. by Amaury Forgeot d'Arc · 16 years ago
  81. 1a21451 Implement PEP 3121: new module initialization and finalization API. by Martin v. Löwis · 16 years ago
  82. f7fa63d Rename copy_reg module to copyreg. by Alexandre Vassalotti · 16 years ago
  83. a85998a Issue #1950: Fixed misusage of PyUnicode_AsString(). by Alexandre Vassalotti · 16 years ago
  84. 072c0f1 Merged revisions 59666-59679 via svnmerge from by Christian Heimes · 17 years ago
  85. 90aa764 #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT. by Christian Heimes · 17 years ago
  86. 217cfd1 Cleanup: Replaced most PyInt_ aliases with PyLong_ and disabled the aliases in intobject.h by Christian Heimes · 17 years ago
  87. fc158e2 Patch 1144 by David Binger, fix for parser module. With unittest. by Guido van Rossum · 17 years ago
  88. 3fcbea5 Use unicode and remove support for some uses of str8. by Neal Norwitz · 17 years ago
  89. 2cde0eb Fix refleaks by Neal Norwitz · 17 years ago
  90. 9f2e346 Merged revisions 56467-56482 via svnmerge from by Martin v. Löwis · 17 years ago
  91. d59da4b Merged revisions 55407-55513 via svnmerge from by Guido van Rossum · 17 years ago
  92. 1bc535d Merged revisions 55328-55341 via svnmerge from by Guido van Rossum · 17 years ago
  93. 0368b72 Merged revisions 55225-55227,55229-55269 via svnmerge from by Guido van Rossum · 17 years ago
  94. 650f0d0 Hide list comp variables and support set comprehensions by Nick Coghlan · 17 years ago
  95. 452bf51 Essential changes for print function changes. by Guido van Rossum · 18 years ago
  96. b940e11 SF patch 1631942 by Collin Winter: by Guido van Rossum · 18 years ago
  97. c150536 PEP 3107 - Function Annotations thanks to Tony Lownds by Neal Norwitz · 18 years ago
  98. 89f507f Four months of trunk changes (including a few releases...) by Thomas Wouters · 18 years ago
  99. 4f72a78 Jiwon Seo's PEP 3102 implementation. by Guido van Rossum · 18 years ago
  100. 52318d6 Patch #1550786: ellipsis literal. by Georg Brandl · 18 years ago