mirror of
https://github.com/python/cpython.git
synced 2026-05-14 16:38:19 -04:00
003f341e99
* Add zipfile and test_zipfile to list of packages. Fixes regression introduced in #98103. * Restore support for py -m test.test_zipfile
8 lines
105 B
Python
8 lines
105 B
Python
import unittest
|
|
|
|
from . import load_tests # noqa: F401
|
|
|
|
|
|
if __name__ == "__main__":
|
|
unittest.main()
|