summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_importlib.py
Commit message (Collapse)AuthorAgeFilesLines
* Fix some more bugs caused by the backport from 3.x for importlib.Brett Cannon2009-03-041-12/+12
| | | | | Do a more exact copy of the final 3.x code to resolve bugs and add appropriate tests.
* Fix a bug where code was trying to index an int. Left over from the situationBrett Cannon2009-02-271-3/+6
| | | | | | from using str.rpartition to str.rindex. Closes Issue5213.
* Backport importlib in the form of providing importlib.import_module(). This hasBrett Cannon2009-01-261-0/+173
been done purely to help transitions from 2.7 to 3.1.