summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_importlib
Commit message (Expand)AuthorAgeFilesLines
* bpo-31642: Restore blocking "from" import by setting None in sys.modules. (#3...Serhiy Storchaka2017-10-081-0/+14
* bpo-31370: Remove support for threads-less builds (#3385)Antoine Pitrou2017-09-071-122/+100
* Spelling fixes (#2902)Ville Skyttä2017-08-031-1/+1
* bpo-30876: Relative import from unloaded package now reimports the package (#...Serhiy Storchaka2017-07-121-1/+1
* bpo-30436: Raise ModuleNotFoundError for importlib.util.find_spec() when pare...Milan Oberkirch2017-06-141-0/+6
* bpo-29851: Have importlib.reload() raise ImportError if the module's spec is ...Garvit Khatri2017-05-241-2/+12
* bpo-30158: Fix deprecation warnings in test_importlib introduced by bpo-29576...Serhiy Storchaka2017-04-291-13/+16
* bpo-29514: Check magic number for bugfix release (#54)Eric Appelt2017-04-171-0/+44
* bpo-29576: add explicit deprecation for importlib.abc.find_loader() and find_...Matthias Bussonnier2017-02-161-0/+6
* Remove unused imports.Serhiy Storchaka2016-12-162-3/+0
* Issue #26940: Fix test_importlib that hangs on the Android armv7 qemu emulator.Xavier de Gaye2016-12-081-1/+1
* Issue #28026: Raise ImportError when exec_module() exists but create_module()...Eric Snow2016-09-081-7/+1
* Issue #26667: Add path-like object support to importlib.util.Brett Cannon2016-09-082-0/+25
* Issue #15767: Use ModuleNotFoundError.Eric Snow2016-09-072-5/+9
* Issue #27895: Spelling fixes (Contributed by Ville Skyttä).Raymond Hettinger2016-08-301-1/+1
* Merge #27782 fix from 3.5Nick Coghlan2016-08-211-0/+9
|\
| * Issue #27782: Fix m_methods handling in multiphase initNick Coghlan2016-08-211-0/+9
* | Merge for #27083Brett Cannon2016-07-163-18/+18
|\ \ | |/
| * Fix regressions introduced by fixes for issue #27083.Brett Cannon2016-07-163-18/+18
* | Merge for #27083Brett Cannon2016-07-151-6/+9
|\ \ | |/
| * Issue #27083: Respect the PYTHONCASEOK environment variable underBrett Cannon2016-07-151-6/+9
* | Issue #26896: Disambiguate uses of "importer" with "finder".Brett Cannon2016-07-082-2/+0
* | Issue #26186: Remove the restriction that built-in and extensionBrett Cannon2016-06-251-0/+2
* | Merge from 3.5Brett Cannon2016-06-251-3/+13
|\ \ | |/
| * Fix a scoping issue where an UnboundLocalError was triggered if aBrett Cannon2016-06-251-3/+13
* | Issue #21099: Switch applicable importlib tests to use PEP 451 API.Eric Snow2016-05-107-38/+106
* | Fixes #19711: Add tests for reloading namespace packages.Eric Snow2016-05-101-1/+33
* | Issue #23277: Remove unused imports in tests.Serhiy Storchaka2016-04-244-6/+0
* | Issue #23277: Remove unused support.run_unittest import.Serhiy Storchaka2016-04-241-1/+0
* | Issue #23277: Remove more unused sys and os imports.Serhiy Storchaka2016-04-241-1/+0
* | Issue #23277: Remove unused sys and os importsBerker Peksag2016-04-245-6/+0
* | Issue #26668: Remove the redundant Lib/test/test_importlib/regrtest.pyBrett Cannon2016-04-081-17/+0
* | Cleanup regrtest "main()" functionVictor Stinner2016-03-241-2/+2
* | Issue #26581: Use the first coding cookie on a line, not the last one.Serhiy Storchaka2016-03-201-1/+1
|\ \ | |/
| * Issue #26581: Use the first coding cookie on a line, not the last one.Serhiy Storchaka2016-03-201-1/+1
* | Merge for issue #26186Brett Cannon2016-02-211-0/+1
|\ \ | |/
| * Issue #26186: Remove an invalid type check inBrett Cannon2016-02-211-0/+1
* | Merge for issue #26367Brett Cannon2016-02-201-0/+5
|\ \ | |/
| * Issue #26367: Have importlib.__init__() raise RuntimeError whenBrett Cannon2016-02-201-0/+5
* | Issue #25985: sys.version_info is now used instead of sys.versionSerhiy Storchaka2016-02-111-1/+1
* | Issue #18018: Raise an ImportError if a relative import is attemptedBrett Cannon2016-01-231-0/+5
* | whitespace cleanupBrett Cannon2016-01-221-2/+2
* | Issue #25791: Warn when __package__ != __spec__.parent.Brett Cannon2016-01-222-15/+34
* | Issue #25791: Raise an ImportWarning when __spec__ or __package__ areBrett Cannon2016-01-151-14/+26
|/
* Issue #25595: Fixed test_deleted_cwd in test_importlib on AIX.Serhiy Storchaka2015-11-111-8/+14
* use assert method in another placeBenjamin Peterson2015-05-301-1/+1
* use assert method (#24328)Benjamin Peterson2015-05-291-1/+1
* fix importing one char extension modules (closes #24328)Benjamin Peterson2015-05-291-0/+8
* Issue #24285: fix importing extensions from packagesNick Coghlan2015-05-261-0/+7
* PEP 489: Multi-phase extension module initializationNick Coghlan2015-05-231-0/+167