summaryrefslogtreecommitdiffstats
path: root/Lib/importlib/_bootstrap_external.py
Commit message (Expand)AuthorAgeFilesLines
* gh-141081: Revert "Add a `.gitignore` file to `__pycache__` folders (#141162)...Hugo van Kemenade12 days1-13/+0
* gh-141081: Add a `.gitignore` file to `__pycache__` folders (#141162)Stan Ulbrych12 days1-0/+13
* GH-65961: Stop setting `__cached__` on modules (GH-142165)Brett Cannon2025-12-111-1/+0
* GH-142203: Remove the `debug_override` parameter from `packaging.util.cache_f...Brett Cannon2025-12-111-12/+1
* GH-97850: Remove all uses and definitions of `load_module()` from importlib (...Brett Cannon2025-12-101-29/+0
* gh-141930: Use the regular IO stack to write .pyc files for a better error me...Stefano Rivera2025-11-271-6/+2
* GH-90344: replace single-call `io.IncrementalNewlineDecoder` usage with non-i...Guo Ci2025-11-151-2/+1
* gh-135801: Add the module parameter to compile() etc (GH-139652)Serhiy Storchaka2025-11-131-4/+5
* GH-119668: expose importlib.machinery.NamespacePath (#119669)Filipe LaĆ­ns2025-11-011-11/+21
* gh-140633: AppleFrameworkLoader: Ignore AttributeError when setting __file__ ...Petr Viktorin2025-10-271-1/+7
* gh-93334: Fix homonym edge case in PathFinder.find_spec() (GH-98100)Jacob Walls2025-09-051-1/+9
* bpo-38735: Don't fail when importing from / with sys.pycache_prefix set (GH-3...Petr Viktorin2025-08-181-1/+2
* gh-115911: Ignore PermissionError during import from cwd (#116131)Alex Willmer2025-01-261-1/+1
* gh-121604: Make sure all deprecated items in importlib raise DeprecationWarni...Tomas R.2025-01-151-0/+6
* GH-126606: don't write incomplete pyc files (GH-126627)CF Bolz-Tereick2024-11-131-1/+5
* gh-122907: Fix Builds Without HAVE_DYNAMIC_LOADING Set (gh-122952)Eric Snow2024-08-131-8/+8
* gh-122188: Remove _imp.pyc_magic_number (GH-122503)Serhiy Storchaka2024-08-021-1/+1
* gh-122188: Move magic number to its own file (#122243)Michael Droettboom2024-07-301-276/+3
* GH-122160: Remove BUILD_CONST_KEY_MAP opcode. (GH-122164)Mark Shannon2024-07-251-1/+2
* GH-120507: Lower the `BEFORE_WITH` and `BEFORE_ASYNC_WITH` instructions. (#12...Mark Shannon2024-06-181-2/+3
* gh-119311: Fix name mangling with PEP 695 generic classes (#119464)Jelle Zijlstra2024-05-281-1/+2
* gh-119180: Update the magic number (#119397)Jelle Zijlstra2024-05-251-1/+1
* gh-119180: Add LOAD_COMMON_CONSTANT opcode (#119321)Jelle Zijlstra2024-05-221-2/+3
* Fix typo inaccuracy in _bootstrap_external.py (GH-118619)wim glenn2024-05-071-1/+1
* gh-118465: Add __firstlineno__ attribute to class (GH-118475)Serhiy Storchaka2024-05-061-1/+2
* gh-89739: gh-77140: Support zip64 in zipimport (GH-94146)Tim Hatch2024-03-281-0/+5
* gh-114099 - Add iOS framework loading machinery. (GH-116454)Russell Keith-Magee2024-03-191-3/+50
* gh-116811: Ensure MetadataPathFinder.invalidate_caches is reachable when dele...Jason R. Coombs2024-03-141-0/+3
* gh-116381: Specialize CONTAINS_OP (GH-116385)Ken Jin2024-03-061-1/+2
* GH-112354: `END_FOR` instruction to only pop one value. (GH-114247)Mark Shannon2024-01-241-1/+2
* gh-114265: move line number propagation before cfg optimization, remove guara...Irit Katriel2024-01-191-1/+2
* gh-107901: synthetic jumps which are not at end of loop no longer check the e...Irit Katriel2024-01-061-1/+2
* gh-112983: Add the known magic value of 3495 for Python 3.11 bytecode (#112985)wim glenn2023-12-121-0/+1
* gh-111354: Simplify _PyGen_yf by moving some of its work to the compiler and ...Irit Katriel2023-11-031-1/+2
* gh-111354: simplify detection of RESUME after YIELD_VALUE at except-depth 1 ...Irit Katriel2023-11-021-1/+2
* GH-105848: Replace KW_NAMES + CALL with LOAD_CONST + CALL_KW (GH-109300)Brandt Bucher2023-09-131-1/+2
* gh-109256: allocate opcode IDs for internal opcodes in their own range (#109269)Irit Katriel2023-09-121-1/+2
* gh-109039: Branch prediction for Tier 2 interpreter (#109038)Guido van Rossum2023-09-111-1/+2
* GH-108614: Increase importlib MAGIC for RESUME_CHECK instruction (#109247)Victor Stinner2023-09-111-1/+2
* gh-105481: generate op IDs from bytecode.c instead of hard coding them in opc...Irit Katriel2023-08-161-1/+2
* GH-105848: Simplify the arrangement of CALL's stack (GH-107788)Brandt Bucher2023-08-091-1/+2
* GH-106008: Make implicit boolean conversions explicit (GH-106003)Brandt Bucher2023-06-291-1/+2
* gh-105775: Convert LOAD_CLOSURE to a pseudo-op (#106059)hms2023-06-291-1/+2
* gh-105481: generate _specializations and _specialized_instructions from bytec...Irit Katriel2023-06-191-1/+2
* GH-77273: Better bytecodes for f-strings (GH-6132)Mark Shannon2023-06-141-2/+4
* Fix magic number (GH-105722)Mark Shannon2023-06-131-3/+2
* GH-105678: Split MAKE_FUNCTION into MAKE_FUNCTION and SET_FUNCTION_ATTRIBUTE ...Mark Shannon2023-06-131-1/+3
* GH-105229: Replace some superinstructions with single instruction equivalent....Mark Shannon2023-06-051-1/+2
* GH-104584: Plugin optimizer API (GH-105100)Mark Shannon2023-06-021-2/+3
* gh-103763: Implement PEP 695 (#103764)Jelle Zijlstra2023-05-161-1/+2