summaryrefslogtreecommitdiffstats
path: root/Lib/importlib/test
Commit message (Expand)AuthorAgeFilesLines
...
* A few more docstring/API cleanups for importlib.Brett Cannon2009-03-151-1/+1
* Finish properly hiding importlib implementation code.Brett Cannon2009-03-129-28/+34
* Implement importlib.util.set_loader: a decorator to automatically setBrett Cannon2009-03-103-4/+9
* Implement get_source for importlib.abc.PyLoader using source_path and get_data.Brett Cannon2009-03-101-9/+32
* Introduce importlib.abc. The module contains various ABCs related to importsBrett Cannon2009-03-095-98/+438
* Remove a dead XXX comment.Brett Cannon2009-03-091-1/+0
* Make importlib.test.source.util.write_bytecode reset sys.dont_write_bytecode.Brett Cannon2009-03-091-1/+5
* Skip case-sensitivity tests for extension modules if _testcapi cannot be found.Brett Cannon2009-03-081-0/+2
* Rename importlib.util.set___package__ to set_package.Brett Cannon2009-03-041-3/+3
* Add a test for importlib.import_module.Brett Cannon2009-03-041-1/+10
* Expose importlib.util.set___package__.Brett Cannon2009-03-021-1/+50
* Refactor source and bytecode file loaders in importlib so that thereBrett Cannon2009-02-212-13/+13
* Separate out finder for source and source/bytecode.Brett Cannon2009-02-212-2/+2
* Do some cleanup in importlib:Brett Cannon2009-02-217-9/+9
* Implement the more specific PEP 302 semantics for loaders and what happens uponBrett Cannon2009-02-171-0/+69
* Change importlib.machinery.PathFinder to not have implicit semantics (that'sBrett Cannon2009-02-152-34/+35
* Add the missing importlib.test.extension.util.Brett Cannon2009-02-071-0/+21
* Factor out helper code from importlib.test.extension.test_path_hook.Brett Cannon2009-02-075-40/+21
* Move importlib completely over to using rpartition and accepting the emptyBrett Cannon2009-02-072-2/+3
* Move importlib's built-in importer to use rpartition for __package__.Brett Cannon2009-02-071-1/+1
* Move importlib's frozen importer over to rpartition for setting __package__.Brett Cannon2009-02-071-1/+1
* Rewrite the code implementing __import__ for importlib. Now it is much simplerBrett Cannon2009-02-075-150/+15
* Finish implementing tests for importlib.machinery.PathFinder by testing thatBrett Cannon2009-02-061-4/+19
* Add tests for using sys.path_hooks by importlib.machinery.PathFinder.Brett Cannon2009-02-051-2/+10
* Implement test for sys.path_importer_cache having None forBrett Cannon2009-02-051-2/+14
* Begin writing tests for importlib.machinery.PathFinder.Brett Cannon2009-02-051-1/+57
* Move import semantic util code to importlib.test.import_.util.Brett Cannon2009-02-019-88/+99
* Rename importlib.test.support to importlib.test.util.Brett Cannon2009-02-0121-191/+159
* Do not execute the .pyc/.pyo files as well as the .py files.Brett Cannon2009-02-011-1/+4
* Split out support code that is specific to source tests out ofBrett Cannon2009-02-017-110/+123
* Move source loader tests (including reload tests) over toBrett Cannon2009-02-012-73/+72
* Fix importlib.machinery.FrozenImporter.load_module() to set __package__Brett Cannon2009-02-011-18/+51
* Move extension module loader tests over to importlib.test.abc.LoaderTests.Brett Cannon2009-02-011-3/+22
* Move built-in loader tests to importlib.test.abc.LoaderTests.Brett Cannon2009-02-011-3/+23
* Merge testing ABCs for importlib into importlib.test.abc.Brett Cannon2009-01-306-47/+45
* Initial take on importlib.test.loader_tests.Brett Cannon2009-01-271-0/+61
* Move importlib.test.frozen.test_finder over to importlib.test.finder_tests.Brett Cannon2009-01-271-5/+8
* Move importlib.test.builtin.test_finder over to importlib.test.finder_tests.Brett Cannon2009-01-271-8/+27
* Make importlib.test.finder_tests an ABC.Brett Cannon2009-01-271-14/+14
* Move importlib.test.extension.test_finder over to importlib.test.finder_tests.Brett Cannon2009-01-271-2/+19
* Add importlib.machinery with its first tenants, BuitinImporter andBrett Cannon2009-01-224-7/+8
* Remove a debugging print statement that accidentally got left in.Brett Cannon2009-01-191-1/+0
* Tests of case-sensitivity were being executed on OSs which did not have aBrett Cannon2009-01-183-4/+13
* Skip over any file or folder that starts with a dot (e.g. .svn).Brett Cannon2009-01-181-0/+3
* Add initial implementation of importlib. See the NOTES files for what isBrett Cannon2009-01-1831-0/+2142