summaryrefslogtreecommitdiffstats
path: root/Python/importlib.h
Commit message (Expand)AuthorAgeFilesLines
* bpo-38693: Use f-strings instead of str.format() within importlib (#17058)Gregory P. Smith2022-10-061-0/+1783
* bpo-45019: Add a tool to generate list of modules to include for frozen modul...Eric Snow2021-08-301-2581/+0
* bpo-43392: Optimize repeated calls to `__import__()` (GH-24735)Germán Méndez Bravo2021-08-121-512/+519
* bpo-44885: Correct the ast locations of f-strings with format specs and repea...Pablo Galindo Salgado2021-08-121-3/+3
* bpo-44840: Compiler: Move duplication of exit blocks with no line numbers to ...Mark Shannon2021-08-091-2327/+2324
* bpo-44717: improve AttributeError on circular imports of submodules (GH-27338)Filipe Laíns2021-07-241-1732/+1749
* Revert "bpo-44717: improve AttributeError on circular imports of submodules (...Pablo Galindo Salgado2021-07-241-1749/+1732
* bpo-44717: improve AttributeError on circular imports of submodules (GH-27299)Filipe Laíns2021-07-241-1732/+1749
* bpo-44626: Merge basic blocks earlier to enable better handling of exit block...Mark Shannon2021-07-151-1470/+1480
* bpo-44530: Add co_qualname field to PyCodeObject (GH-26941)Gabriele N. Tornetta2021-07-071-2533/+2518
* bpo-43950: Add code.co_positions (PEP 657) (GH-26955)Pablo Galindo2021-07-021-1774/+2404
* Make sure that line number is set correctly for call to __exit__ when handlin...Mark Shannon2021-06-241-1729/+1729
* bpo-43693 Get rid of CO_NOFREE -- it's unused (GH-26839)Guido van Rossum2021-06-231-81/+81
* bpo-43693: Turn localspluskinds into an object (GH-26749)Guido van Rossum2021-06-211-1749/+1776
* bpo-43693: Eliminate unused "fast locals". (gh-26587)Eric Snow2021-06-151-1446/+1445
* bpo-43693: Un-revert commit f3fa63e. (#26609)Eric Snow2021-06-081-1470/+1470
* Revert "bpo-43693: Add the MAKE_CELL opcode and interleave fast locals offset...Pablo Galindo2021-06-081-1470/+1470
* bpo-43693: Add the MAKE_CELL opcode and interleave fast locals offsets. (gh-2...Eric Snow2021-06-071-1470/+1470
* bpo-43693: Un-revert commits 2c1e258 and b2bf2bc. (gh-26577)Eric Snow2021-06-071-1635/+1597
* bpo-43693: Revert commits 2c1e2583fdc4db6b43d163239ea42b0e8394171f and b2bf2b...Pablo Galindo2021-06-041-1597/+1635
* bpo-43693: Compute deref offsets in compiler (gh-25152)Mark Shannon2021-06-041-4/+4
* bpo-43693: Add new internal code objects fields: co_fastlocalnames and co_fas...Eric Snow2021-06-031-1635/+1597
* bpo-44298: Fix line numbers for early exits in with statements. (GH-26513)Mark Shannon2021-06-031-1770/+1770
* bpo-43693: Add _PyCode_New(). (gh-26375)Eric Snow2021-05-271-1483/+1461
* bpo-26110: Add ``CALL_METHOD_KW`` opcode to speedup method calls with keyword...Ken Jin2021-05-151-5/+5
* bpo-43933: Force RETURN_VALUE bytecodes to have line numbers (GH-26054)Mark Shannon2021-05-121-1730/+1731
* bpo-40222: "Zero cost" exception handling (GH-25729)Mark Shannon2021-05-071-1709/+1798
* bpo-43933: Set frame.f_lineno during call to __exit__ (GH-25719)Mark Shannon2021-04-301-1300/+1301
* bpo-42739: Don't use sentinels to mark end of line table. (GH-25657)Mark Shannon2021-04-291-1606/+1597
* bpo-41323: compiler: Reuse tuple in constant tuple folding (GH-25419)Inada Naoki2021-04-161-663/+663
* bpo-42135: Deprecate implementations of find_module() and find_loader() (GH-2...Brett Cannon2021-04-061-732/+750
* bpo-27129: Use instruction offsets, not byte offsets, in bytecode and interna...Mark Shannon2021-04-011-1089/+1084
* bpo-42134: Raise ImportWarning when calling find_module() in the import syste...Brett Cannon2021-03-301-441/+448
* bpo-42136: Deprecate module_repr() as found in importlib (GH-25022)Brett Cannon2021-03-261-772/+786
* bpo-42137: have ModuleType.__repr__ prefer __spec__ over module_repr() (GH-24...Brett Cannon2021-03-241-123/+124
* bpo-39316: Make sure that attribute accesses and stores, including method cal...Mark Shannon2021-03-141-3/+3
* bpo-42217: compiler: merge same co_code and co_linetable objects (GH-23056)Inada Naoki2021-02-101-1576/+1568
* bpo-42908: Mark cleanup code at end of try-except and with artificial (#24202)Mark Shannon2021-01-131-1576/+1577
* bpo-42810: Mark jumps at end of if and try statements as artificial. (GH-24091)Mark Shannon2021-01-041-801/+801
* bpo-42246: Don't eliminate jumps to jumps, if it will break PEP 626. (GH-23896)Mark Shannon2020-12-231-765/+766
* bpo-42634: Mark reraise after except blocks as artificial. (GH-23877)Mark Shannon2020-12-211-1726/+1729
* bpo-42246: Make sure that `f_lasti`, and thus `f_lineno`, is set correctly af...Mark Shannon2020-12-171-43/+43
* bpo-42645: Make sure that return/break/continue are only traced once when exi...Mark Shannon2020-12-161-1660/+1660
* bpo-42615: Delete redundant jump instructions that only bypass empty blocks (...Om G2020-12-161-101/+101
* bpo-42246: Remove DO_NOT_EMIT_BYTECODE macros, so that while loops and if sta...Mark Shannon2020-12-151-1704/+1705
* bpo-42635: Mark JUMP_ABSOLUTE at end of 'for' loop as artificial to avoid spu...Mark Shannon2020-12-141-1756/+1756
* Don't generate spurious line number in try-except-finally. (#23760)Mark Shannon2020-12-141-1489/+1489
* bpo-26131: Deprecate usage of load_module() (GH-23469)Brett Cannon2020-12-041-1779/+1811
* bpo-42246: Don't forget the entry block when ensuring that all exits have a l...Mark Shannon2020-12-041-1/+1
* bpo-42246: Make sure that line number is correct after a return, as required ...Mark Shannon2020-12-021-1439/+1436