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: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=636601dfba0214e70baa20611a485f02ee439b8f;p=python 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 502eb7d9c4..0e345cdc2d 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__)):