summaryrefslogtreecommitdiff
path: root/Lib/importlib/test/import_/test_meta_path.py
Commit message (Collapse)AuthorAgeFilesLines
* Issue #15168: Move importlb.test to test.test_importlib.Brett Cannon2012-07-201-115/+0
| | | | | This should make the Linux distros happy as it is now easier to leave importlib's tests out of their base Python distribution.
* Use assertIsNone. Thanks Terry Reedy.Eric V. Smith2012-06-281-1/+1
|
* Changed importlib tests to use assertIs, assertIsInstance, etc., instead of ↵Eric V. Smith2012-06-271-2/+2
| | | | just assertTrue.
* Issue #14605: Stop having implicit entries for sys.meta_path.Brett Cannon2012-04-271-0/+18
| | | | ImportWarning is raised if sys.meta_path is found to be empty.
* Merged revisions 86596 via svnmerge fromEzio Melotti2010-11-211-6/+6
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r86596 | ezio.melotti | 2010-11-20 21:04:17 +0200 (Sat, 20 Nov 2010) | 1 line #9424: Replace deprecated assert* methods in the Python test suite. ........
* Merged revisions 73715 via svnmerge fromGeorg Brandl2009-08-131-3/+3
| | | | | | | | | | svn+ssh://svn.python.org/python/branches/py3k ........ r73715 | benjamin.peterson | 2009-07-01 01:06:06 +0200 (Mi, 01 Jul 2009) | 1 line convert old fail* assertions to assert* ........
* Fixup/simplify another nested context manager.Raymond Hettinger2009-06-121-6/+3
|
* Move import semantic util code to importlib.test.import_.util.Brett Cannon2009-02-011-4/+5
|
* Rename importlib.test.support to importlib.test.util.Brett Cannon2009-02-011-17/+17
|
* Add initial implementation of importlib. See the NOTES files for what isBrett Cannon2009-01-181-0/+99
planned for the package. There are no docs yet, but they are coming once the API for the first new function, importlib.import_module() is finalized.