]> granicus.if.org Git - python/commitdiff
Issue #27311: Fix ZipFile.writestr data argument name.
authorMartin Panter <vadmium+py@gmail.com>
Wed, 15 Jun 2016 00:24:34 +0000 (00:24 +0000)
committerMartin Panter <vadmium+py@gmail.com>
Wed, 15 Jun 2016 00:24:34 +0000 (00:24 +0000)
Patch by John Hagen.

Doc/library/zipfile.rst

index b421ea58feda02e06b20af0ea4f6f353f2cf2c52..a773769e440a324217df0895068a290ae05053c8 100644 (file)
@@ -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.