This website requires JavaScript.
Explore
Help
Sign In
traverseda
/
cpython
Watch
1
Star
0
Fork
You've already forked cpython
0
Code
Issues
Pull Requests
Releases
Wiki
Activity
7cf36387e4
cpython
/
Lib
/
test
/
test_email
/
__main__.py
5 lines
72 B
Python
Raw
Normal View
History
Unescape
Escape
Issue #22002: Make full use of test discovery in test sub-packages. Adds `load_package_tests` function to test.support, uses it in test_asyncio, test_email, test_json, test_tools, test_importlib and all test_importlib sub-packages to implement test discovery.
2014-07-23 14:00:29 -03:00
from
test
.
test_email
import
load_tests
import
unittest
Add a __main__.py to test_email so it works with -m like it did before move.
2011-03-29 10:59:45 -03:00
Issue #22002: Make full use of test discovery in test sub-packages. Adds `load_package_tests` function to test.support, uses it in test_asyncio, test_email, test_json, test_tools, test_importlib and all test_importlib sub-packages to implement test discovery.
2014-07-23 14:00:29 -03:00
unittest
.
main
(
)