diff options
author | Barry Warsaw <barry@python.org> | 2002-07-23 19:04:11 +0000 |
---|---|---|
committer | Barry Warsaw <barry@python.org> | 2002-07-23 19:04:11 +0000 |
commit | f2e8a66e10a6511d80081e7381c0378fa42e489f (patch) | |
tree | 28a026926a92226e30ca2620f46d04eef85120b0 /Lib/test/test_curses.py | |
parent | a5371ed98d35f22701cd71abc69ab6f7b4133102 (diff) | |
download | cpython-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_curses.py')
-rw-r--r-- | Lib/test/test_curses.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_curses.py b/Lib/test/test_curses.py index 8020de1d42..f32dbf3e91 100644 --- a/Lib/test/test_curses.py +++ b/Lib/test/test_curses.py @@ -14,7 +14,7 @@ import curses, sys, tempfile # 'curses' resource be given on the regrtest command line using the -u # option. If not available, nothing after this line will be executed. -import test_support +from test import test_support test_support.requires('curses') def window_funcs(stdscr): |