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: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=1ebdd714acdfab938cabd45924de4e26b88aec4d;p=python 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 0000000000..98af9ecbad --- /dev/null +++ b/Lib/test/test_email/__main__.py @@ -0,0 +1,3 @@ +from test.test_email import test_main + +test_main()