summaryrefslogtreecommitdiff
path: root/Lib/importlib
Commit message (Expand)AuthorAgeFilesLines
* bpo-35133: Fix mistakes when concatenate string literals on different lines. ...Miss Islington (bot)2018-11-051-1/+1
* bpo-30436: Add missing space in importlib.util.find_spec() error message (GH-...Miss Islington (bot)2018-06-061-1/+1
* bpo-32911: Update the historical note about the magic number. (GH-7272)Serhiy Storchaka2018-05-311-1/+1
* bpo-32911: Revert bpo-29463. (GH-7121)Serhiy Storchaka2018-05-291-1/+3
* bpo-33537: Add an __all__ to importlib.resources (GH-6920) (#6941)Miss Islington (bot)2018-05-171-8/+20
* bpo-33254: do not return an empty list when asking for the contents of a name...Miss Islington (bot)2018-04-302-13/+12
* [3.7] bpo-33169: Remove values of `None` from sys.path_importer_cache when in...Brett Cannon2018-04-061-2/+4
* bpo-33151: Handle submodule resources (GH-6268) (GH-6270)Miss Islington (bot)2018-03-271-3/+5
* bpo-32838: Fix Python versions in the table of magic numbers. (GH-5658)Miss Islington (bot)2018-02-231-32/+35
* bpo-32303 - Consistency fixes for namespace loaders (GH-5481) (#5503)Barry Warsaw2018-02-023-6/+27
* bpo-32550. Remove the STORE_ANNOTATION bytecode. (GH-5181)Mark Shannon2018-01-291-1/+2
* bpo-32248 - Implement `ResourceReader` and `get_resource_reader()` for zipim...Barry Warsaw2018-01-241-67/+83
* Implement the get_resource_reader() API for file system imports (#5168)Barry Warsaw2018-01-153-9/+40
* bpo-32248: Introduce the concept of Loader.get_resource_reader() (GH-5108)Brett Cannon2018-01-121-2/+7
* bpo-32248 - Implement importlib.resources (#4911)Barry Warsaw2017-12-301-0/+303
* bpo-32248: Implement importlib.abc.ResourceReader (GH-4892)Brett Cannon2017-12-151-0/+38
* closes bpo-31650: PEP 552 (Deterministic pycs) implementation (#4575)Benjamin Peterson2017-12-092-55/+149
* bpo-21720: Restore the Python 2.7 logic in handling a fromlist. (#4118)Serhiy Storchaka2017-10-261-7/+13
* bpo-31642: Restore blocking "from" import by setting None in sys.modules. (#3...Serhiy Storchaka2017-10-081-1/+2
* bpo-31709: Update importlib magic (#3906)Yury Selivanov2017-10-061-1/+2
* Trivial cleanups following bpo-31370 (#3649)Antoine Pitrou2017-09-182-18/+2
* bpo-31070: Fix a race condition in importlib _get_module_lock(). (#3033)Serhiy Storchaka2017-08-091-2/+12
* bpo-30891: Fix again importlib _find_and_load() (#2665)Victor Stinner2017-07-211-5/+5
* bpo-30876: Relative import from unloaded package now reimports the package (#...Serhiy Storchaka2017-07-121-4/+0
* bpo-30891: Fix importlib _find_and_load() race condition (#2646)Victor Stinner2017-07-101-28/+30
* bpo-30814: Fixed a race condition when import a submodule from a package. (#2...Serhiy Storchaka2017-07-061-14/+14
* bpo-30436: Raise ModuleNotFoundError for importlib.util.find_spec() when pare...Milan Oberkirch2017-06-141-3/+8
* bpo-29851: Have importlib.reload() raise ImportError if the module's spec is ...Garvit Khatri2017-05-241-0/+2
* bpo-22257: Small changes for PEP 432. (#1728)Eric Snow2017-05-221-1/+4
* bpo-30022: Get rid of using EnvironmentError and IOError (except test… (#1051)Serhiy Storchaka2017-04-162-7/+7
* bpo-29862: Fix grammar in importlib.reload() exception (GH-809)Mandeep Bhutani2017-03-241-1/+1
* bpo-29576: add explicit deprecation for importlib.abc.find_loader() and find_...Matthias Bussonnier2017-02-152-7/+21
* Issue #26110: Add LOAD_METHOD/CALL_METHOD opcodes.Yury Selivanov2016-12-131-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-081-1/+3
* Issue #28026: Raise ImportError when exec_module() exists but create_module()...Eric Snow2016-09-081-3/+2
* Issue #26667: Add path-like object support to importlib.util.Brett Cannon2016-09-071-0/+4
* Issue #15767: Use ModuleNotFoundError.Eric Snow2016-09-071-7/+7
* Issue #27974: Remove importlib._bootstrap._ManageReload.Brett Cannon2016-09-061-17/+0
* 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-082-12/+12