Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

bpo-33580: Make binary/text file glossary entries follow most common "see also" style #6991

Merged
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Describe binary/text files brienfly
  • Loading branch information
andresdelfino committed May 20, 2018
commit 10205fc94c757f6c4423edb4dcb1d7d5f0069176
6 changes: 4 additions & 2 deletions Doc/glossary.rst
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,8 @@ Glossary
:data:`sys.stdout.buffer`, and instances of :class:`io.BytesIO` and
:class:`gzip.GzipFile`.

See also :term:`text file`.
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
Expand Down Expand Up @@ -1029,7 +1030,8 @@ Glossary
:data:`sys.stdin`, :data:`sys.stdout`, and instances of
:class:`io.StringIO`.

See also :term:`binary file`.
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
Expand Down