summaryrefslogtreecommitdiffstats
path: root/Lib/importlib/_bootstrap_external.py
Commit message (Expand)AuthorAgeFilesLines
* Produce cleaner bytecode for 'with' and 'async with' by generating separate c...Mark Shannon2019-11-211-1/+3
* bpo-38121: Sync importlib.metadata with 0.22 backport (GH-15993)Jason R. Coombs2019-09-121-49/+3
* bpo-38086: Sync importlib.metadata with importlib_metadata 0.21. (GH-15840)Jason R. Coombs2019-09-101-10/+8
* bpo-34880: Add the LOAD_ASSERTION_ERROR opcode. (GH-15073)Zackery Spytz2019-08-251-1/+2
* bpo-37830: Fix compilation of break and continue in finally. (GH-15320)Serhiy Storchaka2019-08-241-1/+2
* bpo-37697: Sync with importlib_metadata 0.19 (#14993)Jason R. Coombs2019-07-281-10/+19
* Fix typos in docs, comments and test assert messages (#14872)Min ho Kim2019-07-211-1/+1
* bpo-37593: Swap the positions of posonlyargs and args in the constructor of a...Pablo Galindo2019-07-141-1/+3
* bpo-35224: Bump the pyc magic number by 1 instead of by 10 in last modificati...Pablo Galindo2019-06-231-2/+2
* bpo-35224: Bump the pyc magic number after the change in MAP_ADD (GH-14313)Pablo Galindo2019-06-221-1/+3
* bpo-34632: Add importlib.metadata (GH-12547)Jason R. Coombs2019-05-241-0/+52
* bpo-36842: Implement PEP 578 (GH-12613)Steve Dower2019-05-231-2/+6
* bpo-36540: PEP 570 -- Implementation (GH-12701)Pablo Galindo2019-04-291-1/+2
* bpo-35843: Implement __getitem__ for _NamespacePath (GH-11690)Anthony Sottile2019-03-081-0/+3
* bpo-35024: Remove redundant and possibly incorrect verbose message after writ...Quentin Agren2018-10-261-1/+0
* importlib: Fix typo in SourceLoader.path_stats docstring (GH-10052)Quentin2018-10-251-3/+4
* bpo-25711: Rewrite zipimport in pure Python. (GH-6809)Serhiy Storchaka2018-09-181-10/+16
* bpo-33499: Add PYTHONPYCACHEPREFIX env var for alt bytecode cache location. (...Carl Meyer2018-06-161-10/+52
* bpo-32911: Add the historical note about the magic number. (GH-7273)Serhiy Storchaka2018-05-311-0/+2
* bpo-33169: Remove values of `None` from sys.path_importer_cache when invalida...Brett Cannon2018-04-061-2/+4
* bpo-33041: Rework compiling an "async for" loop. (#6142)Serhiy Storchaka2018-03-231-1/+2
* bpo-17611. Move unwinding of stack for "pseudo exceptions" from interpreter t...Serhiy Storchaka2018-02-221-1/+2
* bpo-32838: Fix Python versions in the table of magic numbers. (#5658)Serhiy Storchaka2018-02-221-32/+35
* bpo-32303 - Consistency fixes for namespace loaders (#5481)Barry Warsaw2018-02-021-3/+3
* bpo-32550. Remove the STORE_ANNOTATION bytecode. (GH-5181)Mark Shannon2018-01-301-1/+2
* Implement the get_resource_reader() API for file system imports (#5168)Barry Warsaw2018-01-151-6/+32
* closes bpo-31650: PEP 552 (Deterministic pycs) implementation (#4575)Benjamin Peterson2017-12-091-55/+142
* bpo-31709: Update importlib magic (#3906)Yury Selivanov2017-10-061-1/+2
* Trivial cleanups following bpo-31370 (#3649)Antoine Pitrou2017-09-181-5/+1
* bpo-30022: Get rid of using EnvironmentError and IOError (except test… (#1051)Serhiy Storchaka2017-04-161-4/+4
* Issue #26110: Add LOAD_METHOD/CALL_METHOD opcodes.Yury Selivanov2016-12-141-1/+2
* Issue #28896: Disable WindowsRegistryFinder by default.Steve Dower2016-12-121-2/+0
* Issue #23722: improve __classcell__ compatibilityNick Coghlan2016-12-051-1/+2
* Issue #28257: Improved error message when pass a non-iterable asSerhiy Storchaka2016-10-021-1/+2
* Issue #23722: Initialize __class__ from type.__new__()Nick Coghlan2016-09-111-2/+3
* Issue #24320: Drop an old setuptools-induced hack.Eric Snow2016-09-091-5/+0
* Rework CALL_FUNCTION* opcodesVictor Stinner2016-09-091-1/+2
* Issue #27985: Implement PEP 526 -- Syntax for Variable Annotations.Yury Selivanov2016-09-091-1/+3
* Issue #26667: Add path-like object support to importlib.util.Brett Cannon2016-09-081-0/+4
* Issue #27078: Added BUILD_STRING opcode. Optimized f-strings evaluation.Serhiy Storchaka2016-09-061-2/+3
* Merge for #27083Brett Cannon2016-07-161-4/+10
|\
| * Fix regressions introduced by fixes for issue #27083.Brett Cannon2016-07-161-4/+10
* | Merge for #27083Brett Cannon2016-07-151-1/+2
|\ \ | |/
| * Issue #27083: Respect the PYTHONCASEOK environment variable underBrett Cannon2016-07-151-1/+2
* | Issue #26972: Fix some mistakes in importlib-related docstrings.Brett Cannon2016-07-081-9/+9
* | Issue #27095: Simplified MAKE_FUNCTION and removed MAKE_CLOSURE opcodes.Serhiy Storchaka2016-06-121-3/+5
* | Comment fixes extracted from patch by Demur Rumed.Serhiy Storchaka2016-06-121-4/+0
* | Issue #27286: Fixed compiling BUILD_MAP_UNPACK_WITH_CALL opcode. CallingSerhiy Storchaka2016-06-121-0/+1
|\ \ | |/
| * Issue #27286: Fixed compiling BUILD_MAP_UNPACK_WITH_CALL opcode. CallingSerhiy Storchaka2016-06-121-1/+2
* | Issue #27140: Added BUILD_CONST_KEY_MAP opcode.Serhiy Storchaka2016-06-111-1/+2