This website requires JavaScript.
Explore
Help
Register
Sign In
Rooba
/
cpython
mirror of
https://github.com/python/cpython.git
Watch
1
Star
0
Fork
You've already forked cpython
0
Code
Issues
Packages
Projects
Releases
Wiki
Activity
9d49f85064
cpython
/
Lib
/
test
/
test_asyncio
/
__main__.py
5 lines
58 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 17:00:29 +00:00
from
.
import
load_tests
import
unittest
Initial checkin of asyncio package (== Tulip, == PEP 3156).
2013-10-17 20:40:50 +00: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 17:00:29 +00:00
unittest
.
main
(
)