[Python-checkins] bpo-33580: Make binary/text file glossary entries follow most common "see also" style. (GH-6991)

Miss Islington (bot) webhook-mailer at python.org
Sun May 20 11:57:45 EDT 2018


https://github.com/python/cpython/commit/983e9653e0584b65a6ec66543ce1631f888aa285
commit: 983e9653e0584b65a6ec66543ce1631f888aa285
branch: 3.6
author: Miss Islington (bot) <31488909+miss-islington at users.noreply.github.com>
committer: GitHub <noreply at github.com>
date: 2018-05-20T08:57:42-07:00
summary:

bpo-33580: Make binary/text file glossary entries follow most common "see also" style. (GH-6991)

(cherry picked from commit 0c4be82890858f874ff2158b0fcfdb8f261569c0)

Co-authored-by: Andrés Delfino <adelfino at gmail.com>

files:
M Doc/glossary.rst

diff --git a/Doc/glossary.rst b/Doc/glossary.rst
index 425ab81a9090..279233906091 100644
--- a/Doc/glossary.rst
+++ b/Doc/glossary.rst
@@ -136,8 +136,8 @@ Glossary
       :data:`sys.stdout.buffer`, and instances of :class:`io.BytesIO` and
       :class:`gzip.GzipFile`.
 
-      .. seealso::
-         A :term:`text file` reads and writes :class:`str` objects.
+      See also :term:`text file` for a file object able to read and write
+      :class:`str` objects.
 
    bytes-like object
       An object that supports the :ref:`bufferobjects` and can
@@ -998,8 +998,8 @@ Glossary
       :data:`sys.stdin`, :data:`sys.stdout`, and instances of
       :class:`io.StringIO`.
 
-      .. seealso::
-         A :term:`binary file` reads and write :class:`bytes` objects.
+      See also :term:`binary file` for a file object able to read and write
+      :term:`bytes-like objects <bytes-like object>`.
 
    triple-quoted string
       A string which is bound by three instances of either a quotation mark



More information about the Python-checkins mailing list