From: R David Murray Date: Tue, 29 Mar 2011 13:59:45 +0000 (-0400) Subject: Add a __main__.py to test_email so it works with -m like it did before move. X-Git-Tag: v3.3.0a1~2729 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=1ebdd714acdfab938cabd45924de4e26b88aec4d;p=thirdparty%2FPython%2Fcpython.git Add a __main__.py to test_email so it works with -m like it did before move. --- diff --git a/Lib/test/test_email/__main__.py b/Lib/test/test_email/__main__.py new file mode 100644 index 000000000000..98af9ecbad3f --- /dev/null +++ b/Lib/test/test_email/__main__.py @@ -0,0 +1,3 @@ +from test.test_email import test_main + +test_main()