mirror of
https://github.com/python/cpython.git
synced 2025-09-26 10:19:53 +00:00
[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 03185f0c15
)
This commit is contained in:
parent
dfdded6beb
commit
30f62748e9
11 changed files with 5 additions and 2 deletions
2
.github/CODEOWNERS
vendored
2
.github/CODEOWNERS
vendored
|
@ -164,4 +164,4 @@ Lib/ast.py @isidentical
|
|||
**/*pathlib* @barneygale
|
||||
|
||||
# zipfile.Path
|
||||
**/*zipfile/*_path.py @jaraco
|
||||
**/*zipfile/_path/* @jaraco
|
||||
|
|
0
Lib/test/test_zipfile/_path/__init__.py
Normal file
0
Lib/test/test_zipfile/_path/__init__.py
Normal file
|
@ -2110,7 +2110,7 @@ LIBSUBDIRS= asyncio \
|
|||
wsgiref \
|
||||
$(XMLLIBSUBDIRS) \
|
||||
xmlrpc \
|
||||
zipfile \
|
||||
zipfile zipfile/_path \
|
||||
zoneinfo \
|
||||
__phello__
|
||||
TESTSUBDIRS= idlelib/idle_test \
|
||||
|
@ -2220,6 +2220,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/tracedmodules \
|
||||
|
|
|
@ -0,0 +1,2 @@
|
|||
Moved tests for ``zipfile.Path`` into ``Lib/test/test_zipfile/_path``. Made
|
||||
``zipfile._path`` a package.
|
Loading…
Add table
Add a link
Reference in a new issue