summaryrefslogtreecommitdiff
path: root/Lib/test/test_slice.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_slice.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_slice.py')
-rw-r--r--Lib/test/test_slice.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_slice.py b/Lib/test/test_slice.py
index 895238f106..a837abe45e 100644
--- a/Lib/test/test_slice.py
+++ b/Lib/test/test_slice.py
@@ -1,6 +1,6 @@
# tests for slice objects; in particular the indices method.
-from test_support import vereq
+from test.test_support import vereq
vereq(slice(None ).indices(10), (0, 10, 1))
vereq(slice(None, None, 2).indices(10), (0, 10, 2))