1. 86e322f bpo-40455: Fix gcc10+ warning about writing into a section of offset 0 (GH-24384) by Pablo Galindo · 3 years, 6 months ago
  2. ba7a99d bpo-38631: Replace compiler fatal errors with exceptions (GH-24369) by Victor Stinner · 3 years, 6 months ago
  3. 7fdab83 Fix a reference leak in the compiler for compiler_lambda() (GH-24382) by Pablo Galindo · 3 years, 6 months ago
  4. a619263 bpo-42979: Use _Py_CheckSlotResult() to check slots result (GH-24356) by Victor Stinner · 3 years, 6 months ago
  5. dea5bf9 bpo-33387: update documentation for exception handling opcode changes (GH-24334) by Irit Katriel · 3 years, 7 months ago
  6. e56d54e Mark instructions at end of class scope as artificial. (GH-24222) by Mark Shannon · 3 years, 7 months ago
  7. 1659ad1 Eliminate NOPs in extended blocks. (GH-24209) by Mark Shannon · 3 years, 7 months ago
  8. 3bd6035 bpo-42908: Mark cleanup code at end of try-except and with artificial (#24202) by Mark Shannon · 3 years, 7 months ago
  9. ee9f98d bpo-42823: Fix frame lineno when frame.f_trace is set (GH-24099) by Mark Shannon · 3 years, 7 months ago
  10. 127dde5 bpo-42810: Mark jumps at end of if and try statements as artificial. (GH-24091) by Mark Shannon · 3 years, 7 months ago
  11. bf06b20 Delete the now unused c_do_not_emit_bytecode field. (#24094) by Mark Shannon · 3 years, 7 months ago
  12. 28b75c8 bpo-42246: Don't eliminate jumps to jumps, if it will break PEP 626. (GH-23896) by Mark Shannon · 3 years, 8 months ago
  13. f2dbfd7 bpo-42634: Mark reraise after except blocks as artificial. (GH-23877) by Mark Shannon · 3 years, 8 months ago
  14. bf353f3 bpo-42246: Make sure that `f_lasti`, and thus `f_lineno`, is set correctly after raising or reraising an exception (GH-23803) by Mark Shannon · 3 years, 8 months ago
  15. 5274b68 bpo-42645: Make sure that return/break/continue are only traced once when exiting via a finally block. (GH-23780) by Mark Shannon · 3 years, 8 months ago
  16. c71581c bpo-42615: Delete redundant jump instructions that only bypass empty blocks (GH-23733) by Om G · 3 years, 8 months ago
  17. 8473cf8 bpo-42246: Remove DO_NOT_EMIT_BYTECODE macros, so that while loops and if statements conform to PEP 626. (GH-23743) by Mark Shannon · 3 years, 8 months ago
  18. f5e97b7 bpo-42635: Mark JUMP_ABSOLUTE at end of 'for' loop as artificial to avoid spurious line events. (GH-23761) by Mark Shannon · 3 years, 8 months ago
  19. 56aa20f Don't generate spurious line number in try-except-finally. (#23760) by Mark Shannon · 3 years, 8 months ago
  20. eaccc12 bpo-42246: Don't forget the entry block when ensuring that all exits have a line number (GH-23636) by Mark Shannon · 3 years, 8 months ago
  21. 5977a79 bpo-42246: Make sure that line number is correct after a return, as required by PEP 626 (GH-23495) by Mark Shannon · 3 years, 8 months ago
  22. 7301979 bpo-42202: Store func annotations as a tuple (GH-23316) by Yurii Karabas · 3 years, 9 months ago
  23. 266b462 bpo-42349: Compiler clean up. More yak-shaving for PEP 626. (GH-23267) by Mark Shannon · 3 years, 9 months ago
  24. fd009e6 bpo-42246: Fix memory leak in compiler (GH-23256) by Mark Shannon · 3 years, 9 months ago
  25. cc75ab7 bpo-42246: Eliminate jumps to exit blocks by copying those blocks. (#23251) by Mark Shannon · 3 years, 9 months ago
  26. 877df85 bpo-42246: Partial implementation of PEP 626. (GH-23113) by Mark Shannon · 3 years, 9 months ago
  27. c9bc290 bpo-42161: Use _PyLong_GetZero() and _PyLong_GetOne() (GH-22995) by Victor Stinner · 3 years, 10 months ago
  28. fb5db7e bpo-42006: Stop using PyDict_GetItem, PyDict_GetItemString and _PyDict_GetItemId. (GH-22648) by Serhiy Storchaka · 3 years, 10 months ago
  29. 044a104 bpo-38605: Make 'from __future__ import annotations' the default (GH-20434) by Batuhan Taskaya · 3 years, 10 months ago
  30. 02d126a bpo-39934: Account for control blocks in 'except' in compiler. (GH-22395) by Mark Shannon · 3 years, 11 months ago
  31. 71f2ff4 bpo-40941: Fix fold_tuple_on_constants() compiler warnings (GH-22378) by Victor Stinner · 3 years, 11 months ago
  32. a5634c4 bpo-41746: Add type information to asdl_seq objects (GH-22223) by Pablo Galindo · 3 years, 11 months ago
  33. c51db0e bpo-41531: Fix compilation of dict literals with more than 0xFFFF elements (GH-21850) by Pablo Galindo · 4 years ago
  34. 582aaf1 bpo-41463: Generate information about jumps from 'opcode.py' rather than duplicating it in 'compile.c' (GH-21714) by Mark Shannon · 4 years ago
  35. 6e8128f bpo-41323: Perform 'peephole' optimizations directly on the CFG. (GH-21517) by Mark Shannon · 4 years ago
  36. bd46174 bpo-41218: Only mark async code with CO_COROUTINE. (#21357) by Matthias Bussonnier · 4 years, 1 month ago
  37. 60eb9f1 bpo-39151: Simplify DFS in the assembler (GH-17733) by Pablo Galindo · 4 years, 2 months ago
  38. 1ed83ad bpo-40939: Remove the old parser (GH-20768) by Pablo Galindo · 4 years, 2 months ago
  39. db64f12 Make sure that keyword arguments are merged into the arguments dictionary when dict unpacking and keyword arguments are interleaved. (GH-20553) by Mark Shannon · 4 years, 2 months ago
  40. ee40e4b bpo-40334: Don't downcast from Py_ssize_t to int (GH-19671) by Pablo Galindo · 4 years, 4 months ago
  41. c5fc156 bpo-40334: PEP 617 implementation: New PEG parser for CPython (GH-19503) by Pablo Galindo · 4 years, 4 months ago
  42. da7933e bpo-40268: Add _PyInterpreterState_GetConfig() (GH-19492) by Victor Stinner · 4 years, 4 months ago
  43. 08050e9 bpo-40147: Fix a compiler warning on Windows in Python/compile.c (GH-19389) by Zackery Spytz · 4 years, 4 months ago
  44. 254ec78 bpo-40147: Move the check for duplicate keywords to the compiler (GH-19289) by Pablo Galindo · 4 years, 4 months ago
  45. cb6534e bpo-40067: Improve error messages for multiple star expressions in assignments (GH-19168) by Furkan Önder · 4 years, 5 months ago
  46. 87d3b9d bpo-39882: Add _Py_FatalErrorFormat() function (GH-19157) by Victor Stinner · 4 years, 5 months ago
  47. 7668a8b Use calloc-based functions, not malloc. (GH-19152) by Andy Lester · 4 years, 5 months ago
  48. 9052f7a bpo-39562: Allow executing asynchronous comprehensions in the asyncio REPL (GH-18968) by Batuhan Taşkaya · 4 years, 5 months ago
  49. d112c60 bpo-39220: Do not optimise annotation if 'from __future__ import annotations' is used (GH-17866) by Pablo Galindo · 4 years, 5 months ago
  50. 6b97598 bpo-39988: Remove ast.AugLoad and ast.AugStore node classes. (GH-19038) by Serhiy Storchaka · 4 years, 5 months ago
  51. 61cb3d0 bpo-39987: Simplify setting lineno in the compiler. (GH-19037) by Serhiy Storchaka · 4 years, 5 months ago
  52. 8689209 bpo-39969: Remove ast.Param node class as is no longer used (GH-19020) by Batuhan Taşkaya · 4 years, 5 months ago
  53. 9023581 bpo-39965: Correctly raise SyntaxError if await is used outside async functions when PyCF_ALLOW_TOP_LEVEL_AWAIT is set (GH-19010) by Pablo Galindo · 4 years, 5 months ago
  54. 76d5877 closes bpo-39922: Remove unused args from four functions. (GH-18893) by Andy Lester · 4 years, 5 months ago
  55. 13d52c2 bpo-34822: Simplify AST for subscription. (GH-9605) by Serhiy Storchaka · 4 years, 5 months ago
  56. d5aa2e9 bpo-39890: Don't mutate the AST when compiling starred assignments (GH-18833) by Brandt Bucher · 4 years, 5 months ago
  57. d82e469 bpo-39639: Remove the AST "Suite" node and associated code (GH-18513) by Batuhan Taşkaya · 4 years, 5 months ago
  58. 8c579b1 bpo-32856: Optimize the assignment idiom in comprehensions. (GH-16814) by Serhiy Storchaka · 4 years, 6 months ago
  59. a102ed7 bpo-39573: Use Py_TYPE() macro in Python and Include directories (GH-18391) by Victor Stinner · 4 years, 6 months ago
  60. 8a4cd70 bpo-39320: Handle unpacking of **values in compiler (GH-18141) by Mark Shannon · 4 years, 7 months ago
  61. 13bc139 bpo-39320: Handle unpacking of *values in compiler (GH-17984) by Mark Shannon · 4 years, 7 months ago
  62. e92d393 Fix compiler warning on Windows (GH-18012) by Ammar Askar · 4 years, 7 months ago
  63. 9af0e47 bpo-39156: Break up COMPARE_OP into four logically distinct opcodes. (GH-17754) by Mark Shannon · 4 years, 7 months ago
  64. 88dce26 Fix handling of line numbers around finally-blocks. (#17737) by Mark Shannon · 4 years, 8 months ago
  65. 6dd9b64 bpo-38328: Speed up the creation time of constant list and set display. (GH-17114) by Brandt Bucher · 4 years, 9 months ago
  66. fee5526 Produce cleaner bytecode for 'with' and 'async with' by generating separate code for normal and exceptional paths. (#6641) by Mark Shannon · 4 years, 9 months ago
  67. 6c3e66a bpo-38640: Allow break and continue in always false while loops (GH-16992) by Pablo Galindo · 4 years, 10 months ago
  68. 01171eb Typo fix: "empy" should be "empty". (GH-16666) by Hansraj Das · 4 years, 10 months ago
  69. 99b54d6 Revert "Fix depth-first-search computation in compile.c (GH-16042)" (GH-16050) by T. Wouters · 5 years ago
  70. 355f3e1 Fix depth-first-search computation in compile.c (GH-16042) by Mark Shannon · 5 years ago
  71. ce6a070 bpo-34880: Add the LOAD_ASSERTION_ERROR opcode. (GH-15073) by Zackery Spytz · 5 years ago
  72. ef61c52 bpo-37830: Fix compilation of break and continue in finally. (GH-15320) by Serhiy Storchaka · 5 years ago
  73. c4cacc8 Fix typos in comments, docs and test names (#15018) by Min ho Kim · 5 years ago
  74. 18c5f9d bpo-37500: Make sure dead code does not generate bytecode but also detect syntax errors (GH-14612) by Pablo Galindo · 5 years ago
  75. 4a2edc3 bpo-37221: Add PyCode_NewWithPosOnlyArgs to be used internally and set PyCode_New as a compatibility wrapper (GH-13959) by Pablo Galindo · 5 years ago
  76. c8a3541 bpo-35224: Reverse evaluation order of key: value in dict comprehensions (GH-14139) by Jörn Heissler · 5 years ago
  77. 37d66d7 bpo-37253: Add _PyCompilerFlags_INIT macro (GH-14018) by Victor Stinner · 5 years ago
  78. cd74e66 bpo-37122: Make co->co_argcount represent the total number of positonal arguments in the code object (GH-13726) by Pablo Galindo · 5 years ago
  79. a0c01bf bpo-37115: Support annotations in positional-only arguments (GH-13698) by Pablo Galindo · 5 years ago
  80. 6f6ff8a bpo-37050: Remove expr_text from FormattedValue ast node, use Constant node instead (GH-13597) by Eric V. Smith · 5 years ago
  81. 331a6a5 bpo-36763: Implement the PEP 587 (GH-13592) by Victor Stinner · 5 years ago
  82. 565b4f1 bpo-34616: Add PyCF_ALLOW_TOP_LEVEL_AWAIT to allow top-level await (GH-13148) by Matthias Bussonnier · 5 years ago
  83. ad098b6 Annotate the unexplained assignment in exception unbinding (GH-11448) by Chris Angelico · 5 years ago
  84. 27ee0f8 Fix couple of dead code paths (GH-7418) by David Carlier · 5 years ago
  85. af8646c bpo-1875: Raise SyntaxError in invalid blocks that will be optimised away (GH-13332) by Pablo Galindo · 5 years ago
  86. c96be81 bpo-36900: Replace global conf vars with config (GH-13299) by Victor Stinner · 5 years ago
  87. 9a4135e bpo-36817: Add f-string debugging using '='. (GH-13123) by Eric V. Smith · 5 years ago
  88. 8c77b8c bpo-36540: PEP 570 -- Implementation (GH-12701) by Pablo Galindo · 5 years ago
  89. 63b5fc5 Fix typos in compile.c comments (GH-12752) by Simeon · 5 years ago
  90. 97f5de0 bpo-35284: Fix the error handling in the compiler's compiler_call(). (GH-10625) by Zackery Spytz · 5 years ago
  91. 9b4a1b1 bpo-36374: Fix a possible null pointer dereference (GH-12449) by Zackery Spytz · 5 years ago
  92. 495da29 bpo-35975: Support parsing earlier minor versions of Python 3 (GH-12086) by Guido van Rossum · 5 years ago
  93. d8b3a98 bpo-36187: Remove NamedStore. (GH-12167) by Serhiy Storchaka · 5 years ago
  94. 4583525 bpo-35798: Fix duplicate SyntaxWarning: "is" with a literal. (GH-11639) by Serhiy Storchaka · 5 years ago
  95. 62e4481 bpo-15248: Emit a compiler warning when missed a comma before tuple or list. (GH-11757) by Serhiy Storchaka · 5 years ago
  96. 8f59ee0 bpo-35224: PEP 572 Implementation (#10497) by Emily Morehouse · 6 years ago
  97. 9932a22 bpo-33416: Add end positions to Python AST (GH-11605) by Ivan Levkivskyi · 6 years ago
  98. 3bcbedc bpo-34850: Emit a warning for "is" and "is not" with a literal. (GH-9642) by Serhiy Storchaka · 6 years ago
  99. f7e4d36 bpo-34100: compile: Re-enable frozenset merging (GH-10760) by INADA Naoki · 6 years ago
  100. 1005c84 bpo-34100: Partially revert merge_consts_recursive() (GH-10743) by Victor Stinner · 6 years ago