bpo-44638: Add a reference to the zipp project and hint as to how to use it. (GH-27188)

Automerge-Triggered-By: GH:jaraco
This commit is contained in:
Jason R. Coombs 2021-07-16 09:14:54 -04:00 committed by GitHub
parent 0cd2d51aad
commit 29358e93f2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 0 deletions

View file

@ -566,6 +566,10 @@ Path objects are traversable using the ``/`` operator or ``joinpath``.
Prior to 3.10, ``joinpath`` was undocumented and accepted Prior to 3.10, ``joinpath`` was undocumented and accepted
exactly one parameter. exactly one parameter.
The `zipp <https://pypi.org/project/zipp>`_ project provides backports
of the latest path object functionality to older Pythons. Use
``zipp.Path`` in place of ``zipfile.Path`` for early access to
changes.
.. _pyzipfile-objects: .. _pyzipfile-objects:

View file

@ -0,0 +1 @@
Add a reference to the zipp project and hint as to how to use it.