diff options
author | Brett Cannon <brett@python.org> | 2012-07-21 13:54:58 (GMT) |
---|---|---|
committer | Brett Cannon <brett@python.org> | 2012-07-21 13:54:58 (GMT) |
commit | 636601dfba0214e70baa20611a485f02ee439b8f (patch) | |
tree | 4cd0c6d141f7840402366fc1826c1144dab40948 | |
parent | df8aa2b3256e846353924e1111f59ccbca72f9d6 (diff) | |
download | cpython-636601dfba0214e70baa20611a485f02ee439b8f.zip cpython-636601dfba0214e70baa20611a485f02ee439b8f.tar.gz cpython-636601dfba0214e70baa20611a485f02ee439b8f.tar.bz2 |
Remove a relative import that escaped test.test_importlib.
-rw-r--r-- | Lib/test/test_importlib/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_importlib/__init__.py b/Lib/test/test_importlib/__init__.py index 502eb7d..0e345cd 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__)): |