summaryrefslogtreecommitdiff
path: root/Doc/library/zipfile.rst
diff options
context:
space:
mode:
authorMartin Panter <vadmium+py@gmail.com>2016-06-15 00:24:34 +0000
committerMartin Panter <vadmium+py@gmail.com>2016-06-15 00:24:34 +0000
commit71e86367e090a0d0595a4221c8334d87979488e6 (patch)
tree2baefb51a157a0a74a3a871b8dda2d9c7f7332c7 /Doc/library/zipfile.rst
parentcefa9172a237a56c67e8c9b302c84c1c3dffb871 (diff)
downloadcpython-git-71e86367e090a0d0595a4221c8334d87979488e6.tar.gz
Issue #27311: Fix ZipFile.writestr data argument name.
Patch by John Hagen.
Diffstat (limited to 'Doc/library/zipfile.rst')
-rw-r--r--Doc/library/zipfile.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/zipfile.rst b/Doc/library/zipfile.rst
index b421ea58fe..a773769e44 100644
--- a/Doc/library/zipfile.rst
+++ b/Doc/library/zipfile.rst
@@ -343,9 +343,9 @@ ZipFile Objects
If ``arcname`` (or ``filename``, if ``arcname`` is not given) contains a null
byte, the name of the file in the archive will be truncated at the null byte.
-.. method:: ZipFile.writestr(zinfo_or_arcname, bytes[, compress_type])
+.. method:: ZipFile.writestr(zinfo_or_arcname, data[, compress_type])
- Write the string *bytes* to the archive; *zinfo_or_arcname* is either the file
+ Write the string *data* to the archive; *zinfo_or_arcname* is either the file
name it will be given in the archive, or a :class:`ZipInfo` instance. If it's
an instance, at least the filename, date, and time must be given. If it's a
name, the date and time is set to the current date and time.