aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Python/importlib_zipimport.h
Commit message (Expand)AuthorAge
* bpo-45019: Add a tool to generate list of modules to include for frozen modul...Eric Snow2021-08-30
* bpo-44885: Correct the ast locations of f-strings with format specs and repea...Pablo Galindo Salgado2021-08-12
* bpo-44840: Compiler: Move duplication of exit blocks with no line numbers to ...Mark Shannon2021-08-09
* bpo-44616: Mark all clean up instructions at end of named exception block as ...Mark Shannon2021-07-14
* bpo-44530: Add co_qualname field to PyCodeObject (GH-26941)Gabriele N. Tornetta2021-07-07
* bpo-43950: Add code.co_positions (PEP 657) (GH-26955)Pablo Galindo2021-07-02
* bpo-44313: generate LOAD_ATTR/CALL_FUNCTION for top-level imported objects (G...Batuhan Taskaya2021-06-30
* Make sure that line number is set correctly for call to __exit__ when handlin...Mark Shannon2021-06-24
* bpo-43693 Get rid of CO_NOFREE -- it's unused (GH-26839)Guido van Rossum2021-06-23
* bpo-43693: Turn localspluskinds into an object (GH-26749)Guido van Rossum2021-06-21
* bpo-43693: Un-revert commits 2c1e258 and b2bf2bc. (gh-26577)Eric Snow2021-06-07
* bpo-43693: Revert commits 2c1e2583fdc4db6b43d163239ea42b0e8394171f and b2bf2b...Pablo Galindo2021-06-04
* bpo-43693: Add new internal code objects fields: co_fastlocalnames and co_fas...Eric Snow2021-06-03
* bpo-43693: Add _PyCode_New(). (gh-26375)Eric Snow2021-05-27
* bpo-26110: Add ``CALL_METHOD_KW`` opcode to speedup method calls with keyword...Ken Jin2021-05-15
* bpo-40222: "Zero cost" exception handling (GH-25729)Mark Shannon2021-05-07
* bpo-43933: Set frame.f_lineno during call to __exit__ (GH-25719)Mark Shannon2021-04-30
* bpo-42739: Don't use sentinels to mark end of line table. (GH-25657)Mark Shannon2021-04-29
* bpo-41323: compiler: Reuse tuple in constant tuple folding (GH-25419)Inada Naoki2021-04-16
* bpo-42135: Deprecate implementations of find_module() and find_loader() (GH-2...Brett Cannon2021-04-06
* bpo-27129: Use instruction offsets, not byte offsets, in bytecode and interna...Mark Shannon2021-04-01
* bpo-14678: Update zipimport to support importlib.invalidate_caches() (GH-24159)Desmond Cheong2021-03-08
* bpo-42908: Mark cleanup code at end of try-except and with artificial (#24202)Mark Shannon2021-01-13
* bpo-42810: Mark jumps at end of if and try statements as artificial. (GH-24091)Mark Shannon2021-01-04
* bpo-42246: Don't eliminate jumps to jumps, if it will break PEP 626. (GH-23896)Mark Shannon2020-12-23
* bpo-42634: Mark reraise after except blocks as artificial. (GH-23877)Mark Shannon2020-12-21
* bpo-24792: Fix zipimporter masking the cause of import errors (GH-22204)Irit Katriel2020-12-18
* bpo-42246: Make sure that `f_lasti`, and thus `f_lineno`, is set correctly af...Mark Shannon2020-12-17
* bpo-42246: Remove DO_NOT_EMIT_BYTECODE macros, so that while loops and if sta...Mark Shannon2020-12-15
* Don't generate spurious line number in try-except-finally. (#23760)Mark Shannon2020-12-14
* bpo-26131: Deprecate usage of load_module() (GH-23469)Brett Cannon2020-12-04
* bpo-42246: Make sure that line number is correct after a return, as required ...Mark Shannon2020-12-02
* bpo-42349: Compiler clean up. More yak-shaving for PEP 626. (GH-23267)Mark Shannon2020-11-17
* bpo-42131: Add PEP 451-related methods to zipimport (GH-23187)Brett Cannon2020-11-13
* bpo-42246: Eliminate jumps to exit blocks by copying those blocks. (#23251)Mark Shannon2020-11-12
* bpo-42246: Partial implementation of PEP 626. (GH-23113)Mark Shannon2020-11-12
* bpo-41323: Perform 'peephole' optimizations directly on the CFG. (GH-21517)Mark Shannon2020-07-30
* bpo-39791 native hooks for importlib.resources.files (GH-20576)Jason R. Coombs2020-06-07
* bpo-39987: Simplify setting lineno in the compiler. (GH-19037)Serhiy Storchaka2020-03-17
* bpo-39156: Break up COMPARE_OP into four logically distinct opcodes. (GH-17754)Mark Shannon2020-01-14
* bpo-39033: Fix NameError in zipimport during hash validation (GH-17588)Xtreak2019-12-16
* Produce cleaner bytecode for 'with' and 'async with' by generating separate c...Mark Shannon2019-11-21
* bpo-34880: Add the LOAD_ASSERTION_ERROR opcode. (GH-15073)Zackery Spytz2019-08-25
* bpo-37830: Fix compilation of break and continue in finally. (GH-15320)Serhiy Storchaka2019-08-24
* bpo-37213: Handle negative line deltas correctly in the peephole optimizer (G...Pablo Galindo2019-06-13
* bpo-36842: Implement PEP 578 (GH-12613)Steve Dower2019-05-23
* bpo-36540: PEP 570 -- Implementation (GH-12701)Pablo Galindo2019-04-29
* bpo-16806: Fix `lineno` and `col_offset` for multi-line string tokens (GH-10021)Anthony Sottile2019-01-13
* bpo-31241: Fix AST node position for list and generator comprehensions. (GH-1...Serhiy Storchaka2018-11-27
* bpo-34100: Merge constants recursively (GH-8341)INADA Naoki2018-11-26