From eceebeb14fdc1716c1d951a2ae8102eb80eaa87b Mon Sep 17 00:00:00 2001 From: Mark Dickinson Date: Sat, 25 Jun 2011 13:29:14 +0200 Subject: [PATCH] Issue #12408: Fix relative import in test_future5.py. Thanks Cesare Di Mauro. --- Lib/test/test_future5.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/test/test_future5.py b/Lib/test/test_future5.py index 9ca3a364f7b..ed03a07037a 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):