1. b0544ba bpo-38605: Revert making 'from __future__ import annotations' the default (GH-25490) by Pablo Galindo · 4 years, 4 months ago
  2. 8a232c7 bpo-41323: compiler: Reuse tuple in constant tuple folding (GH-25419) by Inada Naoki · 4 years, 4 months ago
  3. 04732ca bpo-43105: Importlib now resolves relative paths when creating module spec objects from file locations (GH-25121) by Steve Dower · 4 years, 4 months ago
  4. 5061622 bump the bytecode magic number (GH-25225) by Dennis Sweeney · 4 years, 4 months ago
  5. 57c6cb5 bpo-42135: Deprecate implementations of find_module() and find_loader() (GH-25169) by Brett Cannon · 4 years, 4 months ago
  6. b37181e bpo-43683: Handle generator entry in bytecode (GH-25138) by Mark Shannon · 4 years, 4 months ago
  7. c368ce7 bpo-27129: Update magic numbers and bootstrapping for GH-25069 (GH-25172) by Dennis Sweeney · 4 years, 4 months ago
  8. f97dc80 bpo-43672: raise ImportWarning when calling find_loader() (GH-25119) by Brett Cannon · 4 years, 4 months ago
  9. fcb55c0 bpo-27129: Use instruction offsets, not byte offsets, in bytecode and internally. (GH-25069) by Mark Shannon · 4 years, 4 months ago
  10. a7ff6df bpo-42134: Raise ImportWarning when calling find_module() in the import system (GH-25044) by Brett Cannon · 4 years, 4 months ago
  11. 1899087 bpo-42136: Deprecate module_repr() as found in importlib (GH-25022) by Brett Cannon · 4 years, 4 months ago
  12. d48848c bpo-39316: Make sure that attribute accesses and stores, including method calls, conform to PEP 626. (GH-24859) by Mark Shannon · 4 years, 5 months ago
  13. 6714825 bpo-42129: Add support for resources in namespaces (GH-24670) by Jason R. Coombs · 4 years, 5 months ago
  14. 145bf26 bpo-42128: Structural Pattern Matching (PEP 634) (GH-22917) by Brandt Bucher · 4 years, 5 months ago
  15. bdb941b bpo-42217: compiler: merge same co_code and co_linetable objects (GH-23056) by Inada Naoki · 4 years, 6 months ago
  16. 3bd6035 bpo-42908: Mark cleanup code at end of try-except and with artificial (#24202) by Mark Shannon · 4 years, 7 months ago
  17. ee9f98d bpo-42823: Fix frame lineno when frame.f_trace is set (GH-24099) by Mark Shannon · 4 years, 7 months ago
  18. 127dde5 bpo-42810: Mark jumps at end of if and try statements as artificial. (GH-24091) by Mark Shannon · 4 years, 7 months ago
  19. 28b75c8 bpo-42246: Don't eliminate jumps to jumps, if it will break PEP 626. (GH-23896) by Mark Shannon · 4 years, 8 months ago
  20. f2dbfd7 bpo-42634: Mark reraise after except blocks as artificial. (GH-23877) by Mark Shannon · 4 years, 8 months ago
  21. 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 · 4 years, 8 months ago
  22. 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 · 4 years, 8 months ago
  23. f5e97b7 bpo-42635: Mark JUMP_ABSOLUTE at end of 'for' loop as artificial to avoid spurious line events. (GH-23761) by Mark Shannon · 4 years, 8 months ago
  24. 2de5097 bpo-26131: Deprecate usage of load_module() (GH-23469) by Brett Cannon · 4 years, 8 months ago
  25. eaccc12 bpo-42246: Don't forget the entry block when ensuring that all exits have a line number (GH-23636) by Mark Shannon · 4 years, 8 months ago
  26. 5977a79 bpo-42246: Make sure that line number is correct after a return, as required by PEP 626 (GH-23495) by Mark Shannon · 4 years, 8 months ago
  27. 7301979 bpo-42202: Store func annotations as a tuple (GH-23316) by Yurii Karabas · 4 years, 8 months ago
  28. 3be8e22 bpo-42403: Use @staticmethod in importlib (GH-23395) by Victor Stinner · 4 years, 9 months ago
  29. 3390347 bpo-42403: Simplify importlib external bootstrap (GH-23397) by Victor Stinner · 4 years, 9 months ago
  30. 266b462 bpo-42349: Compiler clean up. More yak-shaving for PEP 626. (GH-23267) by Mark Shannon · 4 years, 9 months ago
  31. cc75ab7 bpo-42246: Eliminate jumps to exit blocks by copying those blocks. (#23251) by Mark Shannon · 4 years, 9 months ago
  32. c640915 Bump magic number. (GH-23245) by Mark Shannon · 4 years, 9 months ago
  33. 877df85 bpo-42246: Partial implementation of PEP 626. (GH-23113) by Mark Shannon · 4 years, 9 months ago
  34. 22220ae bpo-38605: bump the magic number for 'annotations' future (#22630) by Batuhan Taskaya · 4 years, 10 months ago
  35. 6e8128f bpo-41323: Perform 'peephole' optimizations directly on the CFG. (GH-21517) by Mark Shannon · 5 years ago
  36. 1f0f4ab bpo-41076: Pre-feed the parser with the f-string expression location (GH-21054) by Lysandros Nikolaou · 5 years ago
  37. 843c277 bpo-39791 native hooks for importlib.resources.files (GH-20576) by Jason R. Coombs · 5 years ago
  38. c5fc156 bpo-40334: PEP 617 implementation: New PEG parser for CPython (GH-19503) by Pablo Galindo · 5 years ago
  39. 83d46e0 bpo-40050: Fix importlib._bootstrap_external (GH-19135) by Victor Stinner · 5 years ago
  40. 61cb3d0 bpo-39987: Simplify setting lineno in the compiler. (GH-19037) by Serhiy Storchaka · 5 years ago
  41. fc72ab6 bpo-38691: importlib ignores PYTHONCASEOK if -E is used (GH-18627) by idomic · 5 years ago
  42. 4dee92b Revert "bpo-38691 Added a switch to ignore PYTHONCASEOK when -E or -I flags passed (#18314)" (GH-18553) by Victor Stinner · 5 years ago
  43. d83b660 bpo-38691 Added a switch to ignore PYTHONCASEOK when -E or -I flags passed (#18314) by idomic · 5 years ago
  44. 8a4cd70 bpo-39320: Handle unpacking of **values in compiler (GH-18141) by Mark Shannon · 6 years ago
  45. 13bc139 bpo-39320: Handle unpacking of *values in compiler (GH-17984) by Mark Shannon · 6 years ago
  46. 9af0e47 bpo-39156: Break up COMPARE_OP into four logically distinct opcodes. (GH-17754) by Mark Shannon · 6 years ago
  47. fee5526 Produce cleaner bytecode for 'with' and 'async with' by generating separate code for normal and exceptional paths. (#6641) by Mark Shannon · 6 years ago
  48. 8ed6503 bpo-38121: Sync importlib.metadata with 0.22 backport (GH-15993) by Jason R. Coombs · 6 years ago
  49. 17499d8 bpo-38086: Sync importlib.metadata with importlib_metadata 0.21. (GH-15840) by Jason R. Coombs · 6 years ago
  50. ce6a070 bpo-34880: Add the LOAD_ASSERTION_ERROR opcode. (GH-15073) by Zackery Spytz · 6 years ago
  51. ef61c52 bpo-37830: Fix compilation of break and continue in finally. (GH-15320) by Serhiy Storchaka · 6 years ago
  52. 049460d bpo-37697: Sync with importlib_metadata 0.19 (#14993) by Jason R. Coombs · 6 years ago
  53. cd6e83b bpo-37593: Swap the positions of posonlyargs and args in the constructor of ast.parameters nodes (GH-14778) by Pablo Galindo · 6 years ago
  54. b3ca797 bpo-35224: Bump the pyc magic number by 1 instead of by 10 in last modification (GH-14320) by Pablo Galindo · 6 years ago
  55. 663131a bpo-35224: Bump the pyc magic number after the change in MAP_ADD (GH-14313) by Pablo Galindo · 6 years ago
  56. 3498c64 bpo-37213: Handle negative line deltas correctly in the peephole optimizer (GH-13969) by Pablo Galindo · 6 years ago
  57. 1bbf7b6 bpo-34632: Add importlib.metadata (GH-12547) by Jason R. Coombs · 6 years ago
  58. b82e17e bpo-36842: Implement PEP 578 (GH-12613) by Steve Dower · 6 years ago
  59. 8c77b8c bpo-36540: PEP 570 -- Implementation (GH-12701) by Pablo Galindo · 6 years ago
  60. ab9b31f bpo-35843: Implement __getitem__ for _NamespacePath (GH-11690) by Anthony Sottile · 6 years ago
  61. 995d9b9 bpo-16806: Fix `lineno` and `col_offset` for multi-line string tokens (GH-10021) by Anthony Sottile · 7 years ago
  62. c2e1607 bpo-34100: Merge constants recursively (GH-8341) by INADA Naoki · 7 years ago
  63. 95b6acf bpo-34876: Change the lineno of the AST for decorated function and class. (GH-9731) by Serhiy Storchaka · 7 years ago
  64. 9e14e49 bpo-35024: Remove redundant and possibly incorrect verbose message after writing '.pyc' (GH-9998) by Quentin Agren · 7 years ago
  65. d7c3e5f importlib: Fix typo in SourceLoader.path_stats docstring (GH-10052) by Quentin · 7 years ago
  66. 79d1c2e bpo-25711: Rewrite zipimport in pure Python. (GH-6809) by Serhiy Storchaka · 7 years ago
  67. da8d72c bpo-12458: Fix line numbers for multiline expressions. (GH-8774) by Serhiy Storchaka · 7 years ago
  68. b193fa9 bpo-33499: Add PYTHONPYCACHEPREFIX env var for alt bytecode cache location. (GH-6834) by Carl Meyer · 7 years ago
  69. 941ec21 bpo-32911: Add the historical note about the magic number. (GH-7273) by Serhiy Storchaka · 7 years ago
  70. 73cbe7a bpo-32911: Revert bpo-29463. (GH-7121) (GH-7197) by Serhiy Storchaka · 7 years ago
  71. f303639 bpo-33270: Intern names for all anonymous code objects (#6472) by Zackery Spytz · 7 years ago
  72. 9e2be60 bpo-33169: Remove values of `None` from sys.path_importer_cache when invalidating caches (GH-6402) by Brett Cannon · 7 years ago
  73. 702f8f3 bpo-33041: Rework compiling an "async for" loop. (#6142) by Serhiy Storchaka · 7 years ago
  74. 520b7ae bpo-17611. Move unwinding of stack for "pseudo exceptions" from interpreter to compiler. (GH-5006) by Serhiy Storchaka · 7 years ago
  75. 4af8fd5 bpo-32838: Fix Python versions in the table of magic numbers. (#5658) by Serhiy Storchaka · 7 years ago
  76. bbbcf86 bpo-32303 - Consistency fixes for namespace loaders (#5481) by Barry Warsaw · 8 years ago
  77. 332cd5e bpo-32550. Remove the STORE_ANNOTATION bytecode. (GH-5181) by Mark Shannon · 8 years ago
  78. 5ec0fee Implement the get_resource_reader() API for file system imports (#5168) by Barry Warsaw · 8 years ago
  79. d4864c6 bpo-24340: Fix estimation of the code stack size. (#5076) by Serhiy Storchaka · 8 years ago
  80. 15a8728 bpo-29469: Optimize literal lists and sets iterating on the AST level. (#4866) by Serhiy Storchaka · 8 years ago
  81. 7ea143a bpo-29469: Move constant folding to AST optimizer (GH-2858) by INADA Naoki · 8 years ago
  82. 42aa93b closes bpo-31650: PEP 552 (Deterministic pycs) implementation (#4575) by Benjamin Peterson · 8 years ago
  83. 02e82a0 bpo-31709: Update importlib magic (#3906) by Yury Selivanov · 8 years ago
  84. 88c60c9 Trivial cleanups following bpo-31370 (#3649) by Antoine Pitrou · 8 years ago
  85. 36ff451 bpo-30501: Make the compiler producing optimized code for condition expressions. (#1851) by Serhiy Storchaka · 8 years ago
  86. 55fe1ae bpo-30022: Get rid of using EnvironmentError and IOError (except test… (#1051) by Serhiy Storchaka · 8 years ago
  87. cb41b27 bpo-29463: Add docstring field to some AST nodes. (#46) by INADA Naoki · 8 years ago
  88. f239213 Issue #26110: Add LOAD_METHOD/CALL_METHOD opcodes. by Yury Selivanov · 9 years ago
  89. 10beb3c Issue #28896: Disable WindowsRegistryFinder by default. by Steve Dower · 9 years ago
  90. 19d2467 Issue #23722: improve __classcell__ compatibility by Nick Coghlan · 9 years ago
  91. 7db3c48 Issue #28517: Fixed of-by-one error in the peephole optimizer that caused by Serhiy Storchaka · 9 years ago
  92. 7344285 Issue #28257: Improved error message when pass a non-iterable as by Serhiy Storchaka · 9 years ago
  93. 3738c2d Issue #27942: String constants now interned recursively in tuples and frozensets. by Serhiy Storchaka · 9 years ago
  94. 00a0fc1 Issue #27942: String constants now interned recursively in tuples and frozensets. by Serhiy Storchaka · 9 years ago
  95. b728105 Issue #27213: Fixed different issues with reworked CALL_FUNCTION* opcodes. by Serhiy Storchaka · 9 years ago
  96. 944368e Issue #23722: Initialize __class__ from type.__new__() by Nick Coghlan · 9 years ago
  97. 50fd898 Issue #24320: Drop an old setuptools-induced hack. by Eric Snow · 9 years ago
  98. f9b760f Rework CALL_FUNCTION* opcodes by Victor Stinner · 9 years ago
  99. f8cb8a1 Issue #27985: Implement PEP 526 -- Syntax for Variable Annotations. by Yury Selivanov · 9 years ago
  100. 035a100 Issue #26667: Add path-like object support to importlib.util. by Brett Cannon · 9 years ago