summaryrefslogtreecommitdiffstats
path: root/Doc/library/zipfile.rst
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2007-09-01 13:51:09 (GMT)
committerGeorg Brandl <georg@python.org>2007-09-01 13:51:09 (GMT)
commit55ac8f0f26efdbbcb5cc197f9369d23d50bee908 (patch)
treea0d5b7128c055d8c767652dc3948c3404be06396 /Doc/library/zipfile.rst
parent1617457cff847fed9fadb01f1acf6ba8bb621726 (diff)
downloadcpython-55ac8f0f26efdbbcb5cc197f9369d23d50bee908.zip
cpython-55ac8f0f26efdbbcb5cc197f9369d23d50bee908.tar.gz
cpython-55ac8f0f26efdbbcb5cc197f9369d23d50bee908.tar.bz2
Get rid of the remaining versionadded/versionchanged directives.
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()