diff options
author | Greg Stein <gstein@lyra.org> | 1999-11-24 02:38:37 (GMT) |
---|---|---|
committer | Greg Stein <gstein@lyra.org> | 1999-11-24 02:38:37 (GMT) |
commit | 32efef33ae924f49e25e4380b68eebd4f98d1cd0 (patch) | |
tree | 7ab4a93bb799f0dd34142cfdd171f7513b6fc93c /Lib/imputil.py | |
parent | 2b23413ce24d336695703815aaa891ff6bef95e6 (diff) | |
download | cpython-32efef33ae924f49e25e4380b68eebd4f98d1cd0.zip cpython-32efef33ae924f49e25e4380b68eebd4f98d1cd0.tar.gz cpython-32efef33ae924f49e25e4380b68eebd4f98d1cd0.tar.bz2 |
look for builtins before stuff on the path.
Diffstat (limited to 'Lib/imputil.py')
-rw-r--r-- | Lib/imputil.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/imputil.py b/Lib/imputil.py index ced38a8..6d70938 100644 --- a/Lib/imputil.py +++ b/Lib/imputil.py @@ -663,8 +663,8 @@ def _test_dir(): def _test_revamp(): "Debug/test function for the revamped import system." - BuiltinImporter().install() PathImporter().install() + BuiltinImporter().install() def _print_importers(): items = sys.modules.items() |