diff options
author | Zachary Ware <zachary.ware@gmail.com> | 2015-04-13 21:40:49 (GMT) |
---|---|---|
committer | Zachary Ware <zachary.ware@gmail.com> | 2015-04-13 21:40:49 (GMT) |
commit | ae9f0fede3f7f366c346d033555bd4fc59f0e0ff (patch) | |
tree | b3fcbed9bf1ab48b0dd5a15b22c51f8873bfbe09 | |
parent | 100aa18556e323d56b44b42fe726c679b70b3df7 (diff) | |
download | cpython-ae9f0fede3f7f366c346d033555bd4fc59f0e0ff.zip cpython-ae9f0fede3f7f366c346d033555bd4fc59f0e0ff.tar.gz cpython-ae9f0fede3f7f366c346d033555bd4fc59f0e0ff.tar.bz2 |
Issue #23730: Document the return value of ZipFile.extract
Patch by Stéphane Wirtel.
-rw-r--r-- | Doc/library/zipfile.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Doc/library/zipfile.rst b/Doc/library/zipfile.rst index 535552d..f3e54ca 100644 --- a/Doc/library/zipfile.rst +++ b/Doc/library/zipfile.rst @@ -253,6 +253,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). + .. note:: If a member filename is an absolute path, a drive/UNC sharepoint and |