From: Guido van Rossum Date: Sun, 6 Oct 2002 20:14:58 +0000 (+0000) Subject: Aargh! The 2.3 version of this file requires "from test.test_support X-Git-Tag: v2.2.2b1~33 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=7034f69d997d23f7624a9cc68763c62fa095de8d;p=thirdparty%2FPython%2Fcpython.git Aargh! The 2.3 version of this file requires "from test.test_support import run_suite", but the 2.2.2 version requires "from test_support import run_suite" ... :-( --- diff --git a/Lib/test/test_email.py b/Lib/test/test_email.py index de0eee36b357..26f10a443ad4 100644 --- a/Lib/test/test_email.py +++ b/Lib/test/test_email.py @@ -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())