From: Brett Cannon Date: Sat, 21 Jul 2012 13:54:58 +0000 (-0400) Subject: Remove a relative import that escaped test.test_importlib. X-Git-Tag: v3.3.0b2~137 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=636601dfba0214e70baa20611a485f02ee439b8f;p=thirdparty%2FPython%2Fcpython.git Remove a relative import that escaped test.test_importlib. --- diff --git a/Lib/test/test_importlib/__init__.py b/Lib/test/test_importlib/__init__.py index 502eb7d9c480..0e345cdc2d40 100644 --- a/Lib/test/test_importlib/__init__.py +++ b/Lib/test/test_importlib/__init__.py @@ -1,6 +1,6 @@ import os import sys -from .. import support +from test import support import unittest def test_suite(package=__package__, directory=os.path.dirname(__file__)):