summaryrefslogtreecommitdiffstats
path: root/Lib/importlib/test/source
Commit message (Expand)AuthorAgeFilesLines
* Issue #15168: Move importlb.test to test.test_importlib.Brett Cannon2012-07-208-1852/+0
* Closes #15030: Make importlib.abc.PyPycLoader respect the new .pycBrett Cannon2012-07-021-2/+6
* Use assertIsNone. Thanks Terry Reedy.Eric V. Smith2012-06-281-1/+1
* Changed importlib tests to use assertIs, assertIsInstance, etc., instead of j...Eric V. Smith2012-06-273-18/+17
* Fixes issue 15039: namespace packages are no longer imported in preference to...Eric V. Smith2012-06-241-1/+1
* Issue #14938: importlib.abc.SourceLoader.is_package() now takes theBrett Cannon2012-06-161-2/+3
* issue 14660: Implement PEP 420, namespace packages.Eric V. Smith2012-05-251-19/+0
* Issue #13959: HaveBrett Cannon2012-05-111-0/+35
* Issue #13959: Deprecate imp.get_suffixes() for new attributes onBrett Cannon2012-05-113-18/+19
* Issue #13959: Re-implement imp.get_suffixes() in Lib/imp.py.Brett Cannon2012-05-043-7/+7
* Issue #14605: Rename _SourcelessFileLoader to SourcelessFileLoader.Marc-Andre Lemburg2012-04-253-3/+3
* Issue #14605: Revert renaming of _SourcelessFileLoader, since it causedMarc-Andre Lemburg2012-04-253-3/+3
* Issue #14605: Rename _SourcelessFileLoader to SourcelessFileLoaderMarc-Andre Lemburg2012-04-243-3/+3
* Issue #14605: Expose importlib.abc.FileLoader andBrett Cannon2012-04-225-21/+36
* Issue #2377: Make importlib the implementation of __import__().Brett Cannon2012-04-144-7/+9
* Have importlib take advantage of ImportError's new 'name' and 'path'Brett Cannon2012-04-132-8/+19
* Update importlib.invalidate_caches() to be more general.Brett Cannon2012-02-271-0/+7
* Issue #13890: Fix importlib case-sensitivity tests to not run on Windows.Brett Cannon2012-01-301-0/+6
* Move some code from importlib.__init__ to importlib._bootstrap thatBrett Cannon2012-01-251-4/+4
* Port import fixes from 2.7.Antoine Pitrou2012-01-251-1/+1
|\
| * Port import fixes from 2.7.Antoine Pitrou2012-01-251-1/+1
* | Port remaining test fixes, and fix test_importlib too.Antoine Pitrou2012-01-251-1/+9
|\ \ | |/
| * Port remaining test fixes, and fix test_importlib too.Antoine Pitrou2012-01-251-1/+9
* | Issue #11235: Fix OverflowError when trying to import a source file whose mod...Antoine Pitrou2012-01-241-0/+17
|\ \ | |/
| * Issue #11235: Fix OverflowError when trying to import a source file whose mod...Antoine Pitrou2012-01-241-0/+17
* | 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-132-15/+39
* | 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