summaryrefslogtreecommitdiffstats
path: root/Lib/importlib
Commit message (Collapse)AuthorAgeFilesLines
* Fix some more bugs caused by the backport from 3.x for importlib.Brett Cannon2009-03-041-22/+9
| | | | | 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-1/+1
| | | | | | from using str.rpartition to str.rindex. Closes Issue5213.
* Make importlib backwards-compatible to Python 2.2 (but this is not promised toBrett Cannon2009-02-031-3/+16
| | | | | | last; just doing it to be nice). Also fix a message for an exception.
* Backport importlib to at least Python 2.5 by getting rid of use of str.format.Brett Cannon2009-02-031-1/+1
|
* Make importlib a package. This allows using svn:externals in the sandbox toBrett Cannon2009-02-031-0/+38
package up the code for separate distribution.