Skip to content

Commit

Permalink
gh-106752: Move zipfile._path into its own package (#106753)
Browse files Browse the repository at this point in the history
* gh-106752: Move zipfile._path into its own package so it may have supplementary behavior.

* Add blurb
  • Loading branch information
jaraco committed Jul 14, 2023
1 parent fb32f35 commit 03185f0
Show file tree
Hide file tree
Showing 11 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/CODEOWNERS
Validating CODEOWNERS rules …
Expand Up @@ -172,7 +172,7 @@ Doc/c-api/stable.rst @encukou
**/*pathlib* @barneygale

# zipfile.Path
**/*zipfile/*_path.py @jaraco
**/*zipfile/_path/* @jaraco

# Argument Clinic
/Tools/clinic/** @erlend-aasland @AlexWaygood
Expand Down
Empty file.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
3 changes: 2 additions & 1 deletion Makefile.pre.in
Expand Up @@ -2125,7 +2125,7 @@ LIBSUBDIRS= asyncio \
wsgiref \
$(XMLLIBSUBDIRS) \
xmlrpc \
zipfile \
zipfile zipfile/_path \
zoneinfo \
__phello__
TESTSUBDIRS= idlelib/idle_test \
Expand Down Expand Up @@ -2229,6 +2229,7 @@ TESTSUBDIRS= idlelib/idle_test \
test/test_warnings \
test/test_warnings/data \
test/test_zipfile \
test/test_zipfile/_path \
test/test_zoneinfo \
test/test_zoneinfo/data \
test/tkinterdata \
Expand Down
@@ -0,0 +1,2 @@
Moved tests for ``zipfile.Path`` into ``Lib/test/test_zipfile/_path``. Made
``zipfile._path`` a package.

0 comments on commit 03185f0

Please sign in to comment.