summaryrefslogtreecommitdiffstats
path: root/Lib/importlib/test
Commit message (Expand)AuthorAgeFilesLines
* Issue #13959: Re-implement imp.get_suffixes() in Lib/imp.py.Brett Cannon2012-05-046-10/+10
* Issue #14646: __import__() now sets __loader__ if need be.Brett Cannon2012-04-271-0/+28
* Issue #14605: Use None in sys.path_importer_cache to represent noBrett Cannon2012-04-271-23/+5
* Issue #14605: Stop having implicit entries for sys.meta_path.Brett Cannon2012-04-271-0/+18
* Issue #14605: Make explicit the entries on sys.path_hooks that used toBrett Cannon2012-04-262-59/+27
* Issue #14605: Rename _SourcelessFileLoader to SourcelessFileLoader.Marc-Andre Lemburg2012-04-254-4/+4
* Issue #14605: Revert renaming of _SourcelessFileLoader, since it causedMarc-Andre Lemburg2012-04-254-4/+4
* Issue #14605: Rename _SourcelessFileLoader to SourcelessFileLoaderMarc-Andre Lemburg2012-04-244-4/+4
* Issue #14605: Expose importlib.abc.FileLoader andBrett Cannon2012-04-2210-29/+58
* Issue #14585: test_import now runs all tests underBrett Cannon2012-04-201-0/+25
* Have importlib.test.regrtest clear sys.path_importer_cache to makeBrett Cannon2012-04-201-0/+1
* rollback 005fd1fe31ab (see #14609 and #14582)Benjamin Peterson2012-04-181-4/+28
* Issue #12599: Be more strict in accepting None vs. a false-like objectBrett Cannon2012-04-182-1/+24
* Issue #14592: A relative import will raise a KeyError if __package__Brett Cannon2012-04-171-0/+5
* Issue #14582: Import returns the module returned by a loader insteadBrett Cannon2012-04-151-28/+4
* Handle importing pkg.mod by executingBrett Cannon2012-04-151-0/+9
* Issue #2377: Make importlib the implementation of __import__().Brett Cannon2012-04-148-22/+11
* Have importlib take advantage of ImportError's new 'name' and 'path'Brett Cannon2012-04-137-18/+39
* Issue #14500: Fix importlib.test.import_.test_packages to clean upBrett Cannon2012-04-061-1/+5
* If a module injects something into sys.modules as a side-effect ofBrett Cannon2012-04-031-0/+13
* Update importlib.invalidate_caches() to be more general.Brett Cannon2012-02-272-0/+35
* Make the benchmark recording more sensible for importlib.test.benchmark.Brett Cannon2012-02-241-29/+27
* Improper type for __package__ should raise TypeError, not ValueError.Brett Cannon2012-02-231-1/+1
* Issue #14043: Speed up importlib's _FileFinder by at least 8x, and add a new ...Antoine Pitrou2012-02-201-2/+2
* Fix importlib.test.__main__ to only worry about command-line flags when direc...Brett Cannon2012-02-171-8/+9
* Have importlib.test use argparse instead of some hacked up solution.Brett Cannon2012-02-171-3/+8
* Tweak the handling of the empty string in sys.path for importlib.Brett Cannon2012-02-161-1/+1
* importlib.__import__() now raises ValueError when level < 0.Brett Cannon2012-02-161-0/+7
* Use the cwd when the empty string is found in sys.path. This leads toBrett Cannon2012-02-081-0/+10
* Re-order importlib benchmarks to be consistent. Also print out what implement...Brett Cannon2012-02-071-6/+8
* Have importlib.test.benchmark test with tabnanny as a medium-sized test.Brett Cannon2012-02-071-32/+58
* Fix a minor output typo as found by Terry Reedy.Brett Cannon2012-01-311-1/+1
* Let importlib.test.benchmark take a specific benchmark name to run.Brett Cannon2012-01-311-3/+18
* Allow for the specification of a file to dump importlib benchmarkBrett Cannon2012-01-311-10/+36
* Issue #13890: Also fix for extension module tests for case-insensitivity.Brett Cannon2012-01-301-0/+6
* Issue #13890: Fix importlib case-sensitivity tests to not run on Windows.Brett Cannon2012-01-301-0/+6
* Move some code from importlib.__init__ to importlib._bootstrap thatBrett Cannon2012-01-251-4/+4
* Port import fixes from 2.7.Antoine Pitrou2012-01-251-1/+1
|\
| * Port import fixes from 2.7.Antoine Pitrou2012-01-251-1/+1
* | Port remaining test fixes, and fix test_importlib too.Antoine Pitrou2012-01-251-1/+9
|\ \ | |/
| * Port remaining test fixes, and fix test_importlib too.Antoine Pitrou2012-01-251-1/+9
* | Issue #11235: Fix OverflowError when trying to import a source file whose mod...Antoine Pitrou2012-01-241-0/+17
|\ \ | |/
| * Issue #11235: Fix OverflowError when trying to import a source file whose mod...Antoine Pitrou2012-01-241-0/+17
* | kill useless import added by 87331661042bBenjamin Peterson2012-01-161-1/+0
* | Issue #13645: pyc files now contain the size of the corresponding sourceAntoine Pitrou2012-01-132-15/+39
* | Fix no-op tests in importlib.Antoine Pitrou2011-12-301-0/+4
|\ \ | |/
| * Fix no-op tests in importlib.Antoine Pitrou2011-12-301-0/+4
* | Issue #13593: updating the importlib utility decorators for __qualname__.Meador Inge2011-12-151-0/+10
* | Issue #13591: import_module potentially imports a module twice.Meador Inge2011-12-152-1/+23
|\ \ | |/
| * Issue #13591: import_module potentially imports a module twice.Meador Inge2011-12-152-1/+23