[Python-checkins] cpython (3.2): #15694: reflow paragraph.

r.david.murray python-checkins at python.org
Sat Aug 18 02:40:21 CEST 2012


http://hg.python.org/cpython/rev/083c37e75c49
changeset:   78628:083c37e75c49
branch:      3.2
parent:      78626:1d5c451a1365
user:        R David Murray <rdmurray at bitdance.com>
date:        Fri Aug 17 20:39:21 2012 -0400
summary:
  #15694: reflow paragraph.

files:
  Doc/library/functions.rst |  5 ++---
  1 files changed, 2 insertions(+), 3 deletions(-)


diff --git a/Doc/library/functions.rst b/Doc/library/functions.rst
--- a/Doc/library/functions.rst
+++ b/Doc/library/functions.rst
@@ -904,9 +904,8 @@
    (the default).
 
    The type of :term:`file object` returned by the :func:`open` function
-   depends on the
-   mode.  When :func:`open` is used to open a file in a text mode (``'w'``,
-   ``'r'``, ``'wt'``, ``'rt'``, etc.), it returns a subclass of
+   depends on the mode.  When :func:`open` is used to open a file in a text
+   mode (``'w'``, ``'r'``, ``'wt'``, ``'rt'``, etc.), it returns a subclass of
    :class:`io.TextIOBase` (specifically :class:`io.TextIOWrapper`).  When used
    to open a file in a binary mode with buffering, the returned class is a
    subclass of :class:`io.BufferedIOBase`.  The exact class varies: in read

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list