From: Barry Warsaw Date: Fri, 19 Jul 2002 22:44:23 +0000 (+0000) Subject: Shut the test up and add a missing import X-Git-Tag: v2.3c1~4912 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=d33d47401d96d3486f83f274e0318aaafd5a854d;p=thirdparty%2FPython%2Fcpython.git Shut the test up and add a missing import --- diff --git a/Lib/test/test_email.py b/Lib/test/test_email.py index 9f17b75e0c7e..5df59606086a 100644 --- a/Lib/test/test_email.py +++ b/Lib/test/test_email.py @@ -1,8 +1,9 @@ # Copyright (C) 2001,2002 Python Software Foundation # email package unit tests +import unittest # The specific tests now live in Lib/email/test -from email.test.test_email import * +from email.test.test_email import suite diff --git a/Lib/test/test_email_codecs.py b/Lib/test/test_email_codecs.py index fa7f16750ab4..aadd53738c34 100644 --- a/Lib/test/test_email_codecs.py +++ b/Lib/test/test_email_codecs.py @@ -1,8 +1,9 @@ # Copyright (C) 2002 Python Software Foundation # email package unit tests for (optional) Asian codecs +import unittest # The specific tests now live in Lib/email/test -from email.test.test_email_codecs import * +from email.test.test_email_codecs import suite