summaryrefslogtreecommitdiffstats
path: root/Lib/importlib
Commit message (Expand)AuthorAgeFilesLines
* #9424: Replace deprecated assert* methods in the Python test suite.Ezio Melotti2010-11-204-23/+23
* Fix a minor inconsistency in capitalization for the 'No module named' exceptionBrett Cannon2010-11-181-3/+5
* Remove redundant context manager.Florent Xicluna2010-09-031-15/+1
* OSError is the exception raised when one tries to create a directory thatBrett Cannon2010-08-261-2/+5
* Fix a bug where an attribute was lacking an object to work off of.Brett Cannon2010-08-241-1/+1
* One of the joys of having test_multiprocessing occasionally execute afterBrett Cannon2010-08-221-18/+26
* Make sure that no __pycache__ directory is needlessly left behind when testingBrett Cannon2010-08-221-7/+10
* While not strictly necessary thanks to the odd ABC inheritance done throughBrett Cannon2010-08-221-0/+14
* Add importlib benchmarks which try to be "realistic" by importing the decimalBrett Cannon2010-07-221-7/+50
* Add comma grouping to max result so it's easier to read.Brett Cannon2010-07-161-1/+1
* Add benchmarks for importing just source w/o writing bytecode, importing sourceBrett Cannon2010-07-161-14/+57
* Touch up comments and code along with outputting what the unit of measure is.Brett Cannon2010-07-151-7/+10
* Make importlib.abc.SourceLoader the primary mechanism for importlib.Brett Cannon2010-07-032-27/+38
* Make importlib.abc.SourceLoader the primary mechanism for importlib.Brett Cannon2010-07-033-1/+32
* Fix a spelling mistake in a comment.Brett Cannon2010-07-031-1/+1
* Make importlib.abc.SourceLoader the primary mechanism for importlib.Brett Cannon2010-07-0315-540/+406
* Add an inheritance test for importlib.abc.SourceLoader.Brett Cannon2010-06-281-0/+5
* Move importlib.abc.SourceLoader to _bootstrap.Brett Cannon2010-06-283-105/+141
* fix test with more obviously incorrect bytecodeBenjamin Peterson2010-06-281-1/+1
* Implement importlib.abc.SourceLoader and deprecate PyLoader and PyPycLoader.Brett Cannon2010-06-272-16/+654
* Move over to assertIs.Brett Cannon2010-06-211-2/+2
* Repair test failure. Bug 8727.Barry Warsaw2010-05-182-2/+13
* Remove unnecessary XXXBarry Warsaw2010-04-171-1/+0
* PEP 3147Barry Warsaw2010-04-177-16/+56
* Importlib was not matching import's handling of .pyc files where it had lessBrett Cannon2010-02-192-29/+109
* 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