diff options
author | Mark Dickinson <mdickinson@enthought.com> | 2011-06-25 11:29:14 (GMT) |
---|---|---|
committer | Mark Dickinson <mdickinson@enthought.com> | 2011-06-25 11:29:14 (GMT) |
commit | eceebeb14fdc1716c1d951a2ae8102eb80eaa87b (patch) | |
tree | 966e30d1c5690cc86f48fc7e6d25458fcf4f1103 /Lib/test/test_future5.py | |
parent | 7e4b5c6773bc1c134fad73679294e2afc0ee8924 (diff) | |
download | cpython-eceebeb14fdc1716c1d951a2ae8102eb80eaa87b.zip cpython-eceebeb14fdc1716c1d951a2ae8102eb80eaa87b.tar.gz cpython-eceebeb14fdc1716c1d951a2ae8102eb80eaa87b.tar.bz2 |
Issue #12408: Fix relative import in test_future5.py. Thanks Cesare Di Mauro.
Diffstat (limited to 'Lib/test/test_future5.py')
-rw-r--r-- | Lib/test/test_future5.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_future5.py b/Lib/test/test_future5.py index 9ca3a36..ed03a07 100644 --- a/Lib/test/test_future5.py +++ b/Lib/test/test_future5.py @@ -3,7 +3,7 @@ from __future__ import unicode_literals, print_function import sys import unittest -from . import support +from test import support class TestMultipleFeatures(unittest.TestCase): |