summaryrefslogtreecommitdiffstats
path: root/Lib/importlib/test
Commit message (Expand)AuthorAgeFilesLines
* Closes #12291 for 3.3 - merged fix from 3.2.Vinay Sajip2011-07-021-1/+1
|\
| * Closes #12291: Fixed bug which was found when doing multiple loads from one ...Vinay Sajip2011-07-021-1/+1
* | Kill dead code in importlib.test.__main__ (#12019, reviewed by Brett Cannon)Éric Araujo2011-06-071-6/+1
* | (Merge 3.2) Issue #11614: Fix importlib tests for the new __hello__ moduleVictor Stinner2011-05-161-9/+17
|\ \ | |/
| * (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 86596 via svnmerge fromEzio Melotti2010-11-214-23/+23
| | * Merged revisions 78242 via svnmerge fromBrett Cannon2010-02-191-24/+99
| | * Merged revisions 76146 via svnmerge fromBrett Cannon2009-11-071-0/+26
| | * Merged revisions 76113-76114 via svnmerge fromBrett Cannon2009-11-051-13/+10
| | * Merged revisions 74584 via svnmerge fromBrett Cannon2009-08-301-4/+14
| | * Merged revisions 73715 via svnmerge fromGeorg Brandl2009-08-1318-84/+84
| | * Merged revisions 74107 via svnmerge fromBrett Cannon2009-07-201-14/+61
| | * Backport of r74103.Brett Cannon2009-07-201-8/+8
* | | Remove a stale comment.Brett Cannon2011-03-241-7/+0
|/ /
* | #9424: Replace deprecated assert* methods in the Python test suite.Ezio Melotti2010-11-204-23/+23
* | Make sure that no __pycache__ directory is needlessly left behind when testingBrett Cannon2010-08-221-7/+10
* | 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-031-25/+36
* | 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-0312-127/+223
* | Add an inheritance test for importlib.abc.SourceLoader.Brett Cannon2010-06-281-0/+5
* | Move importlib.abc.SourceLoader to _bootstrap.Brett Cannon2010-06-281-4/+3
* | fix test with more obviously incorrect bytecodeBenjamin Peterson2010-06-281-1/+1
* | Implement importlib.abc.SourceLoader and deprecate PyLoader and PyPycLoader.Brett Cannon2010-06-271-6/+394
* | Move over to assertIs.Brett Cannon2010-06-211-2/+2
* | Repair test failure. Bug 8727.Barry Warsaw2010-05-181-0/+3
* | Remove unnecessary XXXBarry Warsaw2010-04-171-1/+0
* | PEP 3147Barry Warsaw2010-04-175-15/+35
* | Importlib was not matching import's handling of .pyc files where it had lessBrett Cannon2010-02-191-24/+99
* | When trying to write new bytecode, importlib was not catching the IOErrorBrett Cannon2009-11-071-0/+26
* | 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-302-3/+6
* | 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-301-7/+13
* | 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-302-1/+22
* | 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-301-2/+9
* | 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-301-4/+14