summaryrefslogtreecommitdiffstats
path: root/Lib/importlib
Commit message (Expand)AuthorAgeFilesLines
* Clarify importlib.abc.PyPycLoader.write_bytecode().Brett Cannon2009-12-121-2/+3
* no need to translate newlines in python code anymoreBenjamin Peterson2009-11-131-15/+0
* When trying to write new bytecode, importlib was not catching the IOErrorBrett Cannon2009-11-072-2/+28
* Use tempfile.mkdtemp() instead of tempfile.tempdir for where importlib placesBrett Cannon2009-11-051-11/+4
* importlib.test.source.util referenced variables in the 'finally' part of aBrett Cannon2009-11-051-2/+6
* Rework importlib benchmarks so that they measure number of executions within aBrett Cannon2009-09-031-51/+52
* Clarify why test_import is failing under importlib.Brett Cannon2009-08-301-2/+3
* Trying to import a submodule from another module and not a package was raisingBrett Cannon2009-08-303-4/+11
* test_pep3120 is no longer a problem for importlib as the test was tweaked.Brett Cannon2009-08-301-1/+0
* When the globals argument to importlib.__import__() contained any value forBrett Cannon2009-08-302-11/+17
* Turn on verbose2 for importlib.test.regrtest so as to see failures when they ...Brett Cannon2009-08-301-2/+1
* Raise TypeError if the name given to importlib.__import__() lacks an rpartitionBrett Cannon2009-08-303-1/+24
* Fix the importlib_only test decorator to work again; don't capture the flag v...Brett Cannon2009-08-301-1/+3
* Use the public API, not a private one.Brett Cannon2009-08-301-1/+1
* Allow importlib.__import__ to accept any iterable for fromlist. Discovered whenBrett Cannon2009-08-302-2/+10
* Provide module docstrings for the two main test drivers in importlib thatBrett Cannon2009-08-302-2/+11
* Tweak importlib.test.regrtest to only specify the implicit tests to excludeBrett Cannon2009-08-301-4/+6
* Have importlib raise ImportError if None is found in sys.modules. This matchesBrett Cannon2009-08-302-5/+20
* Add a test file to importlib that runs regrtest using importlib.__import__.Brett Cannon2009-08-271-0/+33
* Add support for a --builtin argument to importlib.test to trigger runningBrett Cannon2009-08-271-0/+5
* Move over to using assertRaises as a context manager for importlib tests.Brett Cannon2009-08-279-24/+36
* Make __package__ setting tests specific to importlib. Also move to assertRais...Brett Cannon2009-08-271-4/+5
* Move a test-skipping decorator over to unittest.skipIf.Brett Cannon2009-08-271-10/+3
* Implement the PEP 302 protocol for get_filename() asBrett Cannon2009-07-204-22/+95
* Importlib's documentation said that importlib.abc.PyLoader inherited fromBrett Cannon2009-07-202-15/+62
* Remove custom test-skipping code in importlib tests for unittest code.Brett Cannon2009-07-201-13/+14
* Some tests in importlib.test.source.test_abc_loader were testing what happensBrett Cannon2009-07-201-8/+16
* Update importlib.test.source.test_abc_loader to new features added in Python ...Brett Cannon2009-07-191-17/+19
* Importlib was using custom code to discover all test modules in importlib.test.Brett Cannon2009-07-152-31/+14
* Remove unused import for function that no longer exists.R. David Murray2009-07-011-1/+0
* convert old fail* assertions to assert*Benjamin Peterson2009-06-3019-85/+85
* Fixup/simplify another nested context manager.Raymond Hettinger2009-06-121-6/+3
* Tests for case-senstivity were not being skipped for darwin when installed on aBrett Cannon2009-05-116-45/+37
* 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
* importlib.test.source.test_abc_loader was making a bad assumption that all fileBrett Cannon2009-04-021-16/+21
* Make a test in importlib have a more robust test value.Brett Cannon2009-04-021-1/+1
* Give a more informative message on an importlib test upon failure.Brett Cannon2009-04-021-1/+3
* Check that on a platform that is expected to have a case-insensitive filesystemBrett Cannon2009-04-021-1/+8
* Rip out a useless method that the superclass implements properly.Brett Cannon2009-04-011-19/+0
* Fix importlib.machinery.PathFinder.find_module() to essentially skip over NoneBrett Cannon2009-03-302-3/+23
* Add simple tests for __import__ for future optimizations to importlib.Brett Cannon2009-03-301-0/+82
* Document import's semantics for the language reference. This includes fillingBrett Cannon2009-03-211-7/+0
* Implement InspectLoader for FrozenImporter.Brett Cannon2009-03-154-9/+65
* Implement InspectLoader for BuiltinImporter.Brett Cannon2009-03-156-22/+80
* A few more docstring/API cleanups for importlib.Brett Cannon2009-03-154-53/+55
* Clean up docstring from importlib.util.module_for_loader.Brett Cannon2009-03-151-8/+8
* Finish properly hiding importlib implementation code.Brett Cannon2009-03-1212-55/+43