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_module.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_module.py')
-rw-r--r-- | Lib/test/test_module.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_module.py b/Lib/test/test_module.py index f3bf3d8775..2b35a531af 100644 --- a/Lib/test/test_module.py +++ b/Lib/test/test_module.py @@ -1,6 +1,6 @@ # Test the module type -from test_support import verify, vereq, verbose, TestFailed +from test.test_support import verify, vereq, verbose, TestFailed import sys module = type(sys) |