summaryrefslogtreecommitdiff
path: root/Lib/test/test_syntax.py
diff options
context:
space:
mode:
authorBarry Warsaw <barry@python.org>2002-07-23 19:04:11 +0000
committerBarry Warsaw <barry@python.org>2002-07-23 19:04:11 +0000
commitf2e8a66e10a6511d80081e7381c0378fa42e489f (patch)
tree28a026926a92226e30ca2620f46d04eef85120b0 /Lib/test/test_syntax.py
parenta5371ed98d35f22701cd71abc69ab6f7b4133102 (diff)
downloadcpython-f2e8a66e10a6511d80081e7381c0378fa42e489f.tar.gz
Get rid of relative imports in all unittests. Now anything that
imports e.g. test_support must do so using an absolute package name such as "import test.test_support" or "from test import test_support". This also updates the README in Lib/test, and gets rid of the duplicate data dirctory in Lib/test/data (replaced by Lib/email/test/data). Now Tim and Jack can have at it. :)
Diffstat (limited to 'Lib/test/test_syntax.py')
-rw-r--r--Lib/test/test_syntax.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_syntax.py b/Lib/test/test_syntax.py
index 6605e27d72..c5c4f6376f 100644
--- a/Lib/test/test_syntax.py
+++ b/Lib/test/test_syntax.py
@@ -1,7 +1,7 @@
import re
import unittest
-import test_support
+from test import test_support
class SyntaxTestCase(unittest.TestCase):