From 32efef33ae924f49e25e4380b68eebd4f98d1cd0 Mon Sep 17 00:00:00 2001 From: Greg Stein Date: Wed, 24 Nov 1999 02:38:37 +0000 Subject: [PATCH] look for builtins before stuff on the path. --- Lib/imputil.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/imputil.py b/Lib/imputil.py index ced38a8a54b..6d709387bb0 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()