From: Berker Peksag Date: Fri, 24 Jun 2016 09:56:50 +0000 (+0300) Subject: Issue #27381: Remove superfluous paren in zipfile documentation X-Git-Tag: v3.6.0a3~86^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a0643829252f523e0b607ec3674da748f5306d7b;p=thirdparty%2FPython%2Fcpython.git Issue #27381: Remove superfluous paren in zipfile documentation --- diff --git a/Doc/library/zipfile.rst b/Doc/library/zipfile.rst index a773769e440a..abe38c42f1c7 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.