summaryrefslogtreecommitdiffstats
path: root/Doc/library/zipfile.rst
diff options
context:
space:
mode:
Diffstat (limited to 'Doc/library/zipfile.rst')
-rw-r--r--Doc/library/zipfile.rst12
1 files changed, 0 insertions, 12 deletions
diff --git a/Doc/library/zipfile.rst b/Doc/library/zipfile.rst
index 7257b35..92a4526 100644
--- a/Doc/library/zipfile.rst
+++ b/Doc/library/zipfile.rst
@@ -10,8 +10,6 @@
.. % LaTeX markup by Fred L. Drake, Jr. <fdrake@acm.org>
-.. versionadded:: 1.6
-
The ZIP file format is a common archive and compression standard. This module
provides tools to create, read, write, append, and list a ZIP file. Any
advanced use of this module will require an understanding of the format, as
@@ -121,9 +119,6 @@ ZipFile Objects
because the default :program:`zip` and :program:`unzip` commands on Unix (the
InfoZIP utilities) don't support these extensions.
- .. versionchanged:: 2.6
- If the file does not exist, it is created if the mode is 'a'.
-
.. method:: ZipFile.close()
@@ -176,8 +171,6 @@ ZipFile Objects
create a new file object that will be held by the ZipExtFile, allowing it to
operate independently of the ZipFile.
- .. versionadded:: 2.6
-
.. method:: ZipFile.printdir()
@@ -188,8 +181,6 @@ ZipFile Objects
Set *pwd* as default password to extract encrypted files.
- .. versionadded:: 2.6
-
.. method:: ZipFile.read(name[, pwd])
@@ -198,9 +189,6 @@ ZipFile Objects
will override the default password set with :meth:`setpassword`. Calling
:meth:`read` on a closed ZipFile will raise a :exc:`RuntimeError`.
- .. versionchanged:: 2.6
- *pwd* was added.
-
.. method:: ZipFile.testzip()