summaryrefslogtreecommitdiff
path: root/Lib/importlib/test
Commit message (Expand)AuthorAgeFilesLines
* Issue #15168: Move importlb.test to test.test_importlib.Brett Cannon2012-07-2041-4547/+0
* Issue #15111: When a module was imported using a 'from import'Brett Cannon2012-07-101-14/+3
* Issue #15210: Greatly simplify the test for supporting importlibBrett Cannon2012-07-041-12/+5
* Issue #15210: If _frozen_importlib is not found in sys.modules byBrett Cannon2012-07-021-1/+22
* Closes #15030: Make importlib.abc.PyPycLoader respect the new .pycBrett Cannon2012-07-021-2/+6
* Use assertIsNone. Thanks Terry Reedy.Eric V. Smith2012-06-289-11/+11
* Changed importlib tests to use assertIs, assertIsInstance, etc., instead of j...Eric V. Smith2012-06-2714-58/+58
* Fixes issue 15039: namespace packages are no longer imported in preference to...Eric V. Smith2012-06-241-1/+1
* Prevent test_inspect from keeping alive a ton of frames and local variables b...Antoine Pitrou2012-06-171-1/+1
* Issue #14938: importlib.abc.SourceLoader.is_package() now takes theBrett Cannon2012-06-151-2/+3
* Whitespace cleanup.Eric V. Smith2012-05-241-4/+4
* issue 14660: Implement PEP 420, namespace packages.Eric V. Smith2012-05-242-26/+21
* Issue #9260: A finer-grained import lock.Antoine Pitrou2012-05-171-0/+115
* Add importlib.util.resolve_name().Brett Cannon2012-05-131-1/+39
* Issue #13959: Introduce importlib.find_loader().Brett Cannon2012-05-121-1/+49
* Issue #13959: HaveBrett Cannon2012-05-112-5/+50
* Issue #13959: Deprecate imp.get_suffixes() for new attributes onBrett Cannon2012-05-115-25/+24
* Issue #14764: Update importlib.test.benchmark to work in a world whereBrett Cannon2012-05-111-0/+14
* Issue #14583: Fix importlib bug when a package's __init__.py would first impo...Antoine Pitrou2012-05-072-1/+61
* 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-252-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-254-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-172-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-141-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-127-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-021-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-231-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