8000 gh-102190: Add additional zipfile pwd docstrings by dlwrnc · Pull Request #102195 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

gh-102190: Add additional zipfile pwd docstrings #102195

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 7 commits into from
Mar 31, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
missing space.
Co-authored-by: Erlend E. Aasland <erlend.aasland@protonmail.com>
  • Loading branch information
gpshead and erlend-aasland authored Mar 31, 2024
commit 48bad40f2e43902a30cfb2d59be1b2602eceede4
2 changes: 1 addition & 1 deletion Lib/zipfile/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -1752,7 +1752,7 @@ def extractall(self, path=None, members=None, pwd=None):
"""Extract all members from the archive to the current working
directory. `path' specifies a different directory to extract to.
`members' is optional and must be a subset of the list returned
by namelist().You can specify the password to decrypt all files
by namelist(). You can specify the password to decrypt all files
using 'pwd'.
"""
if members is None:
Expand Down
0