From: Greg Stein Date: Wed, 24 Nov 1999 02:38:37 +0000 (+0000) Subject: look for builtins before stuff on the path. X-Git-Tag: v1.6a1~710 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=32efef33ae924f49e25e4380b68eebd4f98d1cd0;p=python look for builtins before stuff on the path. --- diff --git a/Lib/imputil.py b/Lib/imputil.py index ced38a8a54..6d709387bb 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()