From: Zachary Ware Date: Mon, 13 Apr 2015 21:40:49 +0000 (-0500) Subject: Issue #23730: Document the return value of ZipFile.extract X-Git-Tag: v2.7.10rc1~42 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e093f11f4b05d08dd7390aa6aa70417de6808bb0;p=thirdparty%2FPython%2Fcpython.git Issue #23730: Document the return value of ZipFile.extract Patch by Stéphane Wirtel. --- diff --git a/Doc/library/zipfile.rst b/Doc/library/zipfile.rst index 261747aa06b1..173dfb002bad 100644 --- a/Doc/library/zipfile.rst +++ b/Doc/library/zipfile.rst @@ -212,6 +212,8 @@ ZipFile Objects to extract to. *member* can be a filename or a :class:`ZipInfo` object. *pwd* is the password used for encrypted files. + Returns the normalized path created (a directory or new file). + .. versionadded:: 2.6 .. note::