mirror of https://github.com/python/cpython
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
This commit is contained in:
parent
fb32f35c05
commit
03185f0c15
|
@ -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
|
||||
|
|
|
@ -2125,7 +2125,7 @@ LIBSUBDIRS= asyncio \
|
|||
wsgiref \
|
||||
$(XMLLIBSUBDIRS) \
|
||||
xmlrpc \
|
||||
zipfile \
|
||||
zipfile zipfile/_path \
|
||||
zoneinfo \
|
||||
__phello__
|
||||
TESTSUBDIRS= idlelib/idle_test \
|
||||
|
@ -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 \
|
||||
|
|
|
@ -0,0 +1,2 @@
|
|||
Moved tests for ``zipfile.Path`` into ``Lib/test/test_zipfile/_path``. Made
|
||||
``zipfile._path`` a package.
|
Loading…
Reference in New Issue