diff options
author | R David Murray <rdmurray@bitdance.com> | 2012-08-18 00:40:03 (GMT) |
---|---|---|
committer | R David Murray <rdmurray@bitdance.com> | 2012-08-18 00:40:03 (GMT) |
commit | ed7fb9c74d291df0f97f42f2f99bf17498c2e6ae (patch) | |
tree | e84de9bf0b2dda6f37d5c19461f5f32a4d097551 /Doc | |
parent | 8eac575e817f6874f3dd34b0b6bed5c8b1011131 (diff) | |
parent | 433ef3b5c371542bdf27899987e3f357a7bb2799 (diff) | |
download | cpython-ed7fb9c74d291df0f97f42f2f99bf17498c2e6ae.zip cpython-ed7fb9c74d291df0f97f42f2f99bf17498c2e6ae.tar.gz cpython-ed7fb9c74d291df0f97f42f2f99bf17498c2e6ae.tar.bz2 |
Merge #15694: reflow paragraph.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/functions.rst | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/Doc/library/functions.rst b/Doc/library/functions.rst index e063895..ddc946b 100644 --- a/Doc/library/functions.rst +++ b/Doc/library/functions.rst @@ -914,9 +914,8 @@ are always available. They are listed here in alphabetical order. The ``'x'`` mode was added. 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 |