Skip to content

Commit 03185f0

Browse files
authored
gh-106752: Move zipfile._path into its own package (#106753)
* gh-106752: Move zipfile._path into its own package so it may have supplementary behavior. * Add blurb
1 parent fb32f35 commit 03185f0

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
@@ -172,7 +172,7 @@ Doc/c-api/stable.rst @encukou
172172
**/*pathlib* @barneygale
173173

174174
# zipfile.Path
175-
**/*zipfile/*_path.py @jaraco
175+
**/*zipfile/_path/* @jaraco
176176

177177
# Argument Clinic
178178
/Tools/clinic/** @erlend-aasland @AlexWaygood

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
@@ -2125,7 +2125,7 @@ LIBSUBDIRS= asyncio \
21252125
wsgiref \
21262126
$(XMLLIBSUBDIRS) \
21272127
xmlrpc \
2128-
zipfile \
2128+
zipfile zipfile/_path \
21292129
zoneinfo \
21302130
__phello__
21312131
TESTSUBDIRS= idlelib/idle_test \
@@ -2229,6 +2229,7 @@ TESTSUBDIRS= idlelib/idle_test \
22292229
test/test_warnings \
22302230
test/test_warnings/data \
22312231
test/test_zipfile \
2232+
test/test_zipfile/_path \
22322233
test/test_zoneinfo \
22332234
test/test_zoneinfo/data \
22342235
test/tkinterdata \
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)