diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2023-07-14 20:40:46 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-14 20:40:46 (GMT) |
commit | 03185f0c150ebc52d41dd5ea6f369c7b5ba9fc16 (patch) | |
tree | e7016301a290011dcffa904c8cb870e01f3bbf1e /Makefile.pre.in | |
parent | fb32f35c0585b1dbb87b6f254818e1f485a50f65 (diff) | |
download | cpython-03185f0c150ebc52d41dd5ea6f369c7b5ba9fc16.zip cpython-03185f0c150ebc52d41dd5ea6f369c7b5ba9fc16.tar.gz cpython-03185f0c150ebc52d41dd5ea6f369c7b5ba9fc16.tar.bz2 |
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
Diffstat (limited to 'Makefile.pre.in')
-rw-r--r-- | Makefile.pre.in | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile.pre.in b/Makefile.pre.in index 4b65551..ddf524a 100644 --- a/Makefile.pre.in +++ b/Makefile.pre.in @@ -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 \ |