summaryrefslogtreecommitdiffstats
path: root/Lib/importlib/test/test_util.py
Commit message (Collapse)AuthorAgeFilesLines
* Issue #15168: Move importlb.test to test.test_importlib.Brett Cannon2012-07-201-208/+0
| | | | | This should make the Linux distros happy as it is now easier to leave importlib's tests out of their base Python distribution.
* Changed importlib tests to use assertIs, assertIsInstance, etc., instead of ↵Eric V. Smith2012-06-271-4/+4
| | | | just assertTrue.
* Add importlib.util.resolve_name().Brett Cannon2012-05-131-1/+39
|
* Issue #14646: __import__() now sets __loader__ if need be.Brett Cannon2012-04-271-0/+28
| | | | | | importlib.util.module_for_loader also will set __loader__ along with __package__. This is in conjunction to a forthcoming update to PEP 302 which will make these two attributes required for loaders to set.
* Issue #12599: Be more strict in accepting None vs. a false-like objectBrett Cannon2012-04-181-1/+15
| | | | | | | in importlib. Thanks to PJE for pointing out the issue and Nick Coghlan for filing the bug.
* Issue #13593: updating the importlib utility decorators for __qualname__.Meador Inge2011-12-151-0/+10
|
* Move over to assertIs.Brett Cannon2010-06-211-2/+2
|
* convert old fail* assertions to assert*Benjamin Peterson2009-06-301-6/+6
|
* Rename importlib.util.set___package__ to set_package.Brett Cannon2009-03-041-3/+3
|
* Expose importlib.util.set___package__.Brett Cannon2009-03-021-1/+50
|
* Implement the more specific PEP 302 semantics for loaders and what happens uponBrett Cannon2009-02-171-0/+69
load failure in relation to reloads. Also expose importlib.util.module_for_loader to handle all of the details of this along with making sure all current loaders behave nicely.