]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Aargh! The 2.3 version of this file requires "from test.test_support
authorGuido van Rossum <guido@python.org>
Sun, 6 Oct 2002 20:14:58 +0000 (20:14 +0000)
committerGuido van Rossum <guido@python.org>
Sun, 6 Oct 2002 20:14:58 +0000 (20:14 +0000)
import run_suite", but the 2.2.2 version requires "from test_support
import run_suite" ... :-(

Lib/test/test_email.py

index de0eee36b3572b4bc856f5b39ba25551d7391a00..26f10a443ad4779f1e37ddeafc5d9cb285d0fafc 100644 (file)
@@ -4,7 +4,7 @@
 import unittest
 # The specific tests now live in Lib/email/test
 from email.test.test_email import suite
-from test.test_support import run_suite
+from test_support import run_suite
 
 def test_main():
     run_suite(suite())