summaryrefslogtreecommitdiffstats
path: root/Lib/importlib/test/source
Commit message (Expand)AuthorAgeFilesLines
* Fix no-op tests in importlib.Antoine Pitrou2011-12-301-0/+4
|\
| * Fix no-op tests in importlib.Antoine Pitrou2011-12-301-0/+4
* | Issue #13248: turn 3.2's PendingDeprecationWarning into 3.3's DeprecationWarn...Florent Xicluna2011-12-101-2/+2
|/
* Closes #12291: Fixed bug which was found when doing multiple loads from one ...Vinay Sajip2011-07-021-1/+1
* Make sure that no __pycache__ directory is needlessly left behind when testingBrett Cannon2010-08-221-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
* Make importlib.abc.SourceLoader the primary mechanism for importlib.Brett Cannon2010-07-036-107/+193
* 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
* Repair test failure. Bug 8727.Barry Warsaw2010-05-181-0/+3
* PEP 3147Barry Warsaw2010-04-174-14/+29
* 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
* Move over to using assertRaises as a context manager for importlib tests.Brett Cannon2009-08-273-9/+12
* Implement the PEP 302 protocol for get_filename() asBrett Cannon2009-07-201-3/+50
* 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
* convert old fail* assertions to assert*Benjamin Peterson2009-06-304-24/+24
* Tests for case-senstivity were not being skipped for darwin when installed on aBrett Cannon2009-05-114-35/+26
* 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
* Finish properly hiding importlib implementation code.Brett Cannon2009-03-125-19/+25
* 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-093-96/+404
* Make importlib.test.source.util.write_bytecode reset sys.dont_write_bytecode.Brett Cannon2009-03-091-1/+5
* 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-213-3/+3
* Move importlib completely over to using rpartition and accepting the emptyBrett Cannon2009-02-071-1/+1
* Rename importlib.test.support to importlib.test.util.Brett Cannon2009-02-016-9/+6
* Split out support code that is specific to source tests out ofBrett Cannon2009-02-016-30/+123
* Move source loader tests (including reload tests) over toBrett Cannon2009-02-012-73/+72
* Merge testing ABCs for importlib into importlib.test.abc.Brett Cannon2009-01-301-2/+2
* Tests of case-sensitivity were being executed on OSs which did not have aBrett Cannon2009-01-181-2/+1
* Add initial implementation of importlib. See the NOTES files for what isBrett Cannon2009-01-187-0/+617