aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Python/importlib_external.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-44626: Merge basic blocks earlier to enable better handling of exit block...Mark Shannon2021-07-15
* 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: bump up magic (#26983)Batuhan Taskaya2021-07-01
* 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-44297: Fix missing line number in generator expressions (GH-26801)Mark Shannon2021-06-21
* bpo-43693: Eliminate unused "fast locals". (gh-26587)Eric Snow2021-06-15
* Fix typos in multiple files (GH-26689)Binbin2021-06-12
* bpo-43693: Un-revert commit f3fa63e. (#26609)Eric Snow2021-06-08
* Revert "bpo-43693: Add the MAKE_CELL opcode and interleave fast locals offset...Pablo Galindo2021-06-08
* bpo-43693: Add the MAKE_CELL opcode and interleave fast locals offsets. (gh-2...Eric Snow2021-06-07
* 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: Compute deref offsets in compiler (gh-25152)Mark Shannon2021-06-03
* bpo-43693: Add new internal code objects fields: co_fastlocalnames and co_fas...Eric Snow2021-06-03
* bpo-44298: Fix line numbers for early exits in with statements. (GH-26513)Mark Shannon2021-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-43933: Force RETURN_VALUE bytecodes to have line numbers (GH-26054)Mark Shannon2021-05-12
* bpo-28307: Convert simple C-style formatting with literal format into f-strin...Serhiy Storchaka2021-05-08
* bpo-40222: "Zero cost" exception handling (GH-25729)Mark Shannon2021-05-07
* bpo-43754: Eliminate bindings for partial pattern matches (GH-25229)Brandt Bucher2021-05-02
* 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-38605: Revert making 'from __future__ import annotations' the default (GH...Pablo Galindo2021-04-21
* bpo-41323: compiler: Reuse tuple in constant tuple folding (GH-25419)Inada Naoki2021-04-16
* bpo-43105: Importlib now resolves relative paths when creating module spec ob...Steve Dower2021-04-07
* bump the bytecode magic number (GH-25225)Dennis Sweeney2021-04-06
* bpo-42135: Deprecate implementations of find_module() and find_loader() (GH-2...Brett Cannon2021-04-06
* bpo-43683: Handle generator entry in bytecode (GH-25138)Mark Shannon2021-04-06
* bpo-27129: Update magic numbers and bootstrapping for GH-25069 (GH-25172)Dennis Sweeney2021-04-04
* bpo-43672: raise ImportWarning when calling find_loader() (GH-25119)Brett Cannon2021-04-02
* bpo-27129: Use instruction offsets, not byte offsets, in bytecode and interna...Mark Shannon2021-04-01
* bpo-42134: Raise ImportWarning when calling find_module() in the import syste...Brett Cannon2021-03-30
* bpo-42136: Deprecate module_repr() as found in importlib (GH-25022)Brett Cannon2021-03-26
* bpo-39316: Make sure that attribute accesses and stores, including method cal...Mark Shannon2021-03-14
* bpo-42129: Add support for resources in namespaces (GH-24670)Jason R. Coombs2021-03-04
* bpo-42128: Structural Pattern Matching (PEP 634) (GH-22917)Brandt Bucher2021-02-26
* bpo-42217: compiler: merge same co_code and co_linetable objects (GH-23056)Inada Naoki2021-02-10
* bpo-42908: Mark cleanup code at end of try-except and with artificial (#24202)Mark Shannon2021-01-13
* bpo-42823: Fix frame lineno when frame.f_trace is set (GH-24099)Mark Shannon2021-01-05
* 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