summaryrefslogtreecommitdiffstats
path: root/Lib/importlib/test/frozen
Commit message (Collapse)AuthorAgeFilesLines
* Issue #15168: Move importlb.test to test.test_importlib.Brett Cannon2012-07-203-181/+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-282-2/+2
|
* Changed importlib tests to use assertIs, assertIsInstance, etc., instead of ↵Eric V. Smith2012-06-272-4/+4
| | | | just assertTrue.
* Whitespace cleanup.Eric V. Smith2012-05-251-4/+4
|
* issue 14660: Implement PEP 420, namespace packages.Eric V. Smith2012-05-251-7/+21
|
* Have importlib take advantage of ImportError's new 'name' and 'path'Brett Cannon2012-04-131-2/+4
| | | | attributes.
* (Merge 3.1) Issue #11614: Fix importlib tests for the new __hello__ moduleVictor Stinner2011-05-161-9/+17
|\
| * Issue #11614: Fix importlib tests for the new __hello__ moduleVictor Stinner2011-05-161-9/+17
| |
| * Merged revisions 73715 via svnmerge fromGeorg Brandl2009-08-132-8/+8
| | | | | | | | | | | | | | | | | | | | 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* ........
* | Move over to using assertRaises as a context manager for importlib tests.Brett Cannon2009-08-271-3/+4
| | | | | | | | | | Obviously one shouldn't do whole sale conversions like this, but I was already going through the test code and I was bored at the airport.
* | convert old fail* assertions to assert*Benjamin Peterson2009-06-302-8/+8
|/
* Implement InspectLoader for FrozenImporter.Brett Cannon2009-03-151-1/+35
|
* Implement importlib.util.set_loader: a decorator to automatically setBrett Cannon2009-03-101-3/+5
| | | | __loader__ on modules.
* Move importlib's frozen importer over to rpartition for setting __package__.Brett Cannon2009-02-071-1/+1
|
* Rename importlib.test.support to importlib.test.util.Brett Cannon2009-02-012-29/+5
|
* Fix importlib.machinery.FrozenImporter.load_module() to set __package__Brett Cannon2009-02-011-18/+51
| | | | | properly. Discovered by also moving the loader tests over to importlib.test.abc.LoaderTests.
* Merge testing ABCs for importlib into importlib.test.abc.Brett Cannon2009-01-301-2/+2
|
* Move importlib.test.frozen.test_finder over to importlib.test.finder_tests.Brett Cannon2009-01-271-5/+8
|
* Add importlib.machinery with its first tenants, BuitinImporter andBrett Cannon2009-01-222-4/+4
| | | | | | | | FrozenImporter. Docs forthcoming. I plan on all finders and loaders (and most likely hooks) to live in imoprtlib.machinery. Utility stuff will end up in importlib.util. Higher-level API stuff will stay on imoprtlib directly (e.g. import_module).
* Add initial implementation of importlib. See the NOTES files for what isBrett Cannon2009-01-184-0/+108
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.