From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Sat, 4 Jul 2020 04:06:07 +0000 (-0700) Subject: bpo-33864: Clarify the docs for typing.ByteString (GH-21311) X-Git-Tag: v3.8.4~19 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=6857ebefc048e316f948091946d337b5ada807a4;p=thirdparty%2FPython%2Fcpython.git bpo-33864: Clarify the docs for typing.ByteString (GH-21311) (cherry picked from commit b40e434386cd94a367d4a256e3364771140160e7) Co-authored-by: Zackery Spytz --- diff --git a/Doc/library/typing.rst b/Doc/library/typing.rst index 5fa89423d20b..1467276d0141 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.