[Python-checkins] cpython (3.2): Issue #12408: Fix relative import in test_future5.py. Thanks Cesare Di Mauro.
mark.dickinson
python-checkins at python.org
Sat Jun 25 13:30:11 CEST 2011
http://hg.python.org/cpython/rev/c5fca67a7e8c
changeset: 70966:c5fca67a7e8c
branch: 3.2
parent: 70962:4a3e528b6b11
user: Mark Dickinson <mdickinson at enthought.com>
date: Sat Jun 25 13:29:14 2011 +0200
summary:
Issue #12408: Fix relative import in test_future5.py. Thanks Cesare Di Mauro.
files:
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
--- a/Lib/test/test_future5.py
+++ b/Lib/test/test_future5.py
@@ -3,7 +3,7 @@
import sys
import unittest
-from . import support
+from test import support
class TestMultipleFeatures(unittest.TestCase):
--
Repository URL: http://hg.python.org/cpython
More information about the Python-checkins
mailing list