[Python-checkins] bpo-33864: Clarify the docs for typing.ByteString (GH-21311)

Miss Islington (bot) webhook-mailer at python.org
Sat Jul 4 00:06:11 EDT 2020


https://github.com/python/cpython/commit/6857ebefc048e316f948091946d337b5ada807a4
commit: 6857ebefc048e316f948091946d337b5ada807a4
branch: 3.8
author: Miss Islington (bot) <31488909+miss-islington at users.noreply.github.com>
committer: GitHub <noreply at github.com>
date: 2020-07-03T21:06:07-07:00
summary:

bpo-33864: Clarify the docs for typing.ByteString (GH-21311)

(cherry picked from commit b40e434386cd94a367d4a256e3364771140160e7)

Co-authored-by: Zackery Spytz <zspytz at gmail.com>

files:
M Doc/library/typing.rst

diff --git a/Doc/library/typing.rst b/Doc/library/typing.rst
index 5fa89423d20bf..1467276d0141d 100644
--- a/Doc/library/typing.rst
+++ b/Doc/library/typing.rst
@@ -672,7 +672,7 @@ The module defines the following classes, functions and decorators:
    A generic version of :class:`collections.abc.ByteString`.
 
    This type represents the types :class:`bytes`, :class:`bytearray`,
-   and :class:`memoryview`.
+   and :class:`memoryview` of byte sequences.
 
    As a shorthand for this type, :class:`bytes` can be used to
    annotate arguments of any of the types mentioned above.



More information about the Python-checkins mailing list