From 7034f69d997d23f7624a9cc68763c62fa095de8d Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Sun, 6 Oct 2002 20:14:58 +0000 Subject: [PATCH] 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" ... :-( --- Lib/test/test_email.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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()) -- 2.47.3