summaryrefslogtreecommitdiffstats
path: root/Lib/importlib/test/source/test_abc_loader.py
Commit message (Expand)AuthorAgeFilesLines
* Issue #15168: Move importlb.test to test.test_importlib.Brett Cannon2012-07-201-886/+0
* Closes #15030: Make importlib.abc.PyPycLoader respect the new .pycBrett Cannon2012-07-021-2/+6
* Changed importlib tests to use assertIs, assertIsInstance, etc., instead of j...Eric V. Smith2012-06-271-11/+10
* Issue #14938: importlib.abc.SourceLoader.is_package() now takes theBrett Cannon2012-06-161-2/+3
* Have importlib take advantage of ImportError's new 'name' and 'path'Brett Cannon2012-04-131-4/+7
* Move some code from importlib.__init__ to importlib._bootstrap thatBrett Cannon2012-01-251-4/+4
* kill useless import added by 87331661042bBenjamin Peterson2012-01-161-1/+0
* Issue #13645: pyc files now contain the size of the corresponding sourceAntoine Pitrou2012-01-131-3/+7
* Issue #13248: turn 3.2's PendingDeprecationWarning into 3.3's DeprecationWarn...Florent Xicluna2011-12-101-2/+2
* 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-031-0/+1
* 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
* 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-301-11/+11
* Tests for case-senstivity were not being skipped for darwin when installed on aBrett Cannon2009-05-111-8/+8
* 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
* 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-091-0/+390