8000 [3.12] gh-106752: Move zipfile._path into its own package (GH-106753)… · python/cpython@30f6274 · GitHub
[go: up one dir, main page]

Skip to content

Commit 30f6274

Browse files
authored
[3.12] gh-106752: Move zipfile._path into its own package (GH-106753) (#106755)
* gh-106752: Move zipfile._path into its own package so it may have supplementary behavior. * Add blurb. (cherry picked from commit 03185f0)
1 parent dfdded6 commit 30f6274

File tree

11 files changed

+5
-2
lines changed

11 files changed

+5
-2
lines changed

.github/CODEOWNERS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,4 +164,4 @@ Lib/ast.py @isidentical
164164
**/*pathlib* @barneygale
165165

166166
# zipfile.Path
167-
**/*zipfile/*_path.py @jaraco
167+
**/*zipfile/_path/* @jaraco

Lib/test/test_zipfile/_path/__init__.py

Whitespace-only changes.
File renamed without changes.

Makefile.pre.in

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2110,7 +2110,7 @@ LIBSUBDIRS= asyncio \
21102110
wsgiref \
21112111
$(XMLLIBSUBDIRS) \
21122112
xmlrpc \
2113-
zipfile \
2113+
zipfile zipfile/_path \
21142114
zoneinfo \
21152115
__phello__
21162116
TESTSUBDIRS= idlelib/idle_test \
@@ -2220,6 +2220,7 @@ TESTSUBDIRS= idlelib/idle_test \
22202220
test/test_warnings \
22212221
test/test_warnings/data \
22222222
test/test_zipfile \
2223+
test/test_zipfile/_path \
22232224
test/test_zoneinfo \
22242225
test/test_zoneinfo/data \
22252226
test/tracedmodules \
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
Moved tests for ``zipfile.Path`` into ``Lib/test/test_zipfile/_path``. Made
2+
``zipfile._path`` a package.

0 commit comments

Comments
 (0)
0