[Python-checkins] cpython (3.5): Issue #27381: Remove superfluous paren in zipfile documentation

berker.peksag python-checkins at python.org
Fri Jun 24 05:55:59 EDT 2016


https://hg.python.org/cpython/rev/be435520e493
changeset:   102153:be435520e493
branch:      3.5
parent:      102151:983fe8f96b08
user:        Berker Peksag <berker.peksag at gmail.com>
date:        Fri Jun 24 12:56:50 2016 +0300
summary:
  Issue #27381: Remove superfluous paren in zipfile documentation

files:
  Doc/library/zipfile.rst |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Doc/library/zipfile.rst b/Doc/library/zipfile.rst
--- a/Doc/library/zipfile.rst
+++ b/Doc/library/zipfile.rst
@@ -250,7 +250,7 @@
 .. 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.

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list