summaryrefslogtreecommitdiffstats
path: root/Doc/library/zipfile.rst
diff options
context:
space:
mode:
authorR David Murray <rdmurray@bitdance.com>2012-08-15 15:05:36 (GMT)
committerR David Murray <rdmurray@bitdance.com>2012-08-15 15:05:36 (GMT)
commitee0a945ae4077d9e4ffdb77e247ed13265316897 (patch)
tree867c956f41f97c2dec722ed838d41934d7d6d460 /Doc/library/zipfile.rst
parent1b00f25bf99d9b7a5f307984f6467258de636d23 (diff)
downloadcpython-ee0a945ae4077d9e4ffdb77e247ed13265316897.zip
cpython-ee0a945ae4077d9e4ffdb77e247ed13265316897.tar.gz
cpython-ee0a945ae4077d9e4ffdb77e247ed13265316897.tar.bz2
#15543: reflow paragraphs.
Diffstat (limited to 'Doc/library/zipfile.rst')
-rw-r--r--Doc/library/zipfile.rst14
1 files changed, 7 insertions, 7 deletions
diff --git a/Doc/library/zipfile.rst b/Doc/library/zipfile.rst
index 4035a14..48edf1f 100644
--- a/Doc/library/zipfile.rst
+++ b/Doc/library/zipfile.rst
@@ -174,13 +174,13 @@ ZipFile Objects
.. method:: ZipFile.open(name, mode='r', pwd=None)
- Extract a member from the archive as a file-like object (ZipExtFile). *name* is
- the name of the file in the archive, or a :class:`ZipInfo` object. The *mode*
- parameter, if included, must be one of the following: ``'r'`` (the default),
- ``'U'``, or ``'rU'``. Choosing ``'U'`` or ``'rU'`` will enable
- :term:`universal newlines` support in the read-only object.
- *pwd* is the password used for encrypted files.
- Calling :meth:`open` on a closed ZipFile will raise a :exc:`RuntimeError`.
+ Extract a member from the archive as a file-like object (ZipExtFile). *name*
+ is the name of the file in the archive, or a :class:`ZipInfo` object. The
+ *mode* parameter, if included, must be one of the following: ``'r'`` (the
+ default), ``'U'``, or ``'rU'``. Choosing ``'U'`` or ``'rU'`` will enable
+ :term:`universal newlines` support in the read-only object. *pwd* is the
+ password used for encrypted files. Calling :meth:`open` on a closed
+ ZipFile will raise a :exc:`RuntimeError`.
.. note::