mirror of
https://github.com/python/cpython.git
synced 2025-07-23 19:25:40 +00:00

* Add zipfile and test_zipfile to list of packages. Fixes regression introduced in #98103. * Restore support for py -m test.test_zipfile
7 lines
105 B
Python
7 lines
105 B
Python
import unittest
|
|
|
|
from . import load_tests # noqa: F401
|
|
|
|
|
|
if __name__ == "__main__":
|
|
unittest.main()
|