summaryrefslogtreecommitdiffstats
path: root/Lib/importlib/test/util.py
Commit message (Collapse)AuthorAgeFilesLines
* Issue #15168: Move importlb.test to test.test_importlib.Brett Cannon2012-07-201-140/+0
| | | | | This should make the Linux distros happy as it is now easier to leave importlib's tests out of their base Python distribution.
* Issue #14583: Fix importlib bug when a package's __init__.py would first ↵Antoine Pitrou2012-05-071-1/+5
| | | | import one of its modules then raise an error.
* Issue #2377: Make importlib the implementation of __import__().Brett Cannon2012-04-141-1/+1
| | | | | | | importlib._bootstrap is now frozen into Python/importlib.h and stored as _frozen_importlib in sys.modules. Py_Initialize() loads the frozen code along with sys and imp and then uses _frozen_importlib._install() to set builtins.__import__() w/ _frozen_importlib.__import__().
* Issue #13591: import_module potentially imports a module twice.Meador Inge2011-12-151-1/+6
|
* Remove custom test-skipping code in importlib tests for unittest code.Brett Cannon2009-07-201-13/+14
|
* Tests for case-senstivity were not being skipped for darwin when installed on aBrett Cannon2009-05-111-8/+9
| | | | | | | case-sensitive filesystems -- which is not the default case. Along the way also fixed the skipping of tests when sys.dont_write_bytecode is true. Closes issue #5442 again.
* fix name againBenjamin Peterson2009-04-041-1/+1
|
* fix nameBenjamin Peterson2009-04-041-1/+1
|
* fix namingBenjamin Peterson2009-04-031-3/+3
|
* os.path.listdir -> os.listdirBenjamin Peterson2009-04-031-1/+1
|
* Check that on a platform that is expected to have a case-insensitive filesystemBrett Cannon2009-04-021-1/+8
| | | | | | that is in fact the case. Closes issue #5442.
* Factor out helper code from importlib.test.extension.test_path_hook.Brett Cannon2009-02-071-1/+2
|
* Move import semantic util code to importlib.test.import_.util.Brett Cannon2009-02-011-32/+0
|
* Rename importlib.test.support to importlib.test.util.Brett Cannon2009-02-011-0/+153