Skip to content

Commit 7796d31

Browse files
authored
gh-98098: Create packages from zipfile and test_zipfile (gh-98103)
* gh-98098: Move zipfile into a package. * Moved test_zipfile to a package * Extracted module for test_path. * Add blurb * Add jaraco as owner of zipfile.Path. * Synchronize with minor changes found at jaraco/zipp@d9e7f4352d.
1 parent dc063a2 commit 7796d31

File tree

8 files changed

+834
-798
lines changed

8 files changed

+834
-798
lines changed

.github/CODEOWNERS

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -154,3 +154,6 @@ Lib/ast.py @isidentical
154154

155155
# pathlib
156156
**/*pathlib* @brettcannon
157+
158+
# zipfile.Path
159+
**/*zipfile/*_path.py @jaraco

Lib/test/test_zipfile/__init__.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
import os
2+
from test.support import load_package_tests
3+
4+
def load_tests(*args):
5+
return load_package_tests(os.path.dirname(__file__), *args)

0 commit comments

Comments
 (0)