diff options
author | Berker Peksag <berker.peksag@gmail.com> | 2016-06-24 09:56:50 (GMT) |
---|---|---|
committer | Berker Peksag <berker.peksag@gmail.com> | 2016-06-24 09:56:50 (GMT) |
commit | a0643829252f523e0b607ec3674da748f5306d7b (patch) | |
tree | 92c39d9a794b6ec0275ad06f160f2d879e952bfc /Doc/library/zipfile.rst | |
parent | e495646a9702935ae47f01c4fd06b62328bf11cb (diff) | |
download | cpython-a0643829252f523e0b607ec3674da748f5306d7b.zip cpython-a0643829252f523e0b607ec3674da748f5306d7b.tar.gz cpython-a0643829252f523e0b607ec3674da748f5306d7b.tar.bz2 |
Issue #27381: Remove superfluous paren in zipfile documentation
Diffstat (limited to 'Doc/library/zipfile.rst')
-rw-r--r-- | Doc/library/zipfile.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/zipfile.rst b/Doc/library/zipfile.rst index a773769..abe38c4 100644 --- a/Doc/library/zipfile.rst +++ b/Doc/library/zipfile.rst @@ -250,7 +250,7 @@ ZipFile Objects .. method:: ZipFile.extract(member, path=None, pwd=None) Extract a member from the archive to the current working directory; *member* - must be its full name or a :class:`ZipInfo` object). Its file information is + must be its full name or a :class:`ZipInfo` object. Its file information is extracted as accurately as possible. *path* specifies a different directory to extract to. *member* can be a filename or a :class:`ZipInfo` object. *pwd* is the password used for encrypted files. |