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: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d33d47401d96d3486f83f274e0318aaafd5a854d;p=python Shut the test up and add a missing import --- diff --git a/Lib/test/test_email.py b/Lib/test/test_email.py index 9f17b75e0c..5df5960608 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 fa7f16750a..aadd53738c 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