diff options
author | Andrés Delfino <adelfino@gmail.com> | 2018-07-07 19:00:46 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2018-07-07 19:00:46 (GMT) |
commit | 03dd0e794e26afb5fa998d10ae2071e2cb0bc634 (patch) | |
tree | 7c17feac3ce069089e2055e5f82e8a2b10e6907d /Doc | |
parent | 6cfe45a5c3d41c08d09f319ea68065b10200b13f (diff) | |
download | cpython-03dd0e794e26afb5fa998d10ae2071e2cb0bc634.zip cpython-03dd0e794e26afb5fa998d10ae2071e2cb0bc634.tar.gz cpython-03dd0e794e26afb5fa998d10ae2071e2cb0bc634.tar.bz2 |
Add missing closing parentheses (GH-8144)
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/stdtypes.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/stdtypes.rst b/Doc/library/stdtypes.rst index 1211ece..c9e3a94 100644 --- a/Doc/library/stdtypes.rst +++ b/Doc/library/stdtypes.rst @@ -2315,7 +2315,7 @@ data and are closely related to string objects in a variety of other ways. While bytes literals and representations are based on ASCII text, bytes objects actually behave like immutable sequences of integers, with each value in the sequence restricted such that ``0 <= x < 256`` (attempts to - violate this restriction will trigger :exc:`ValueError`. This is done + violate this restriction will trigger :exc:`ValueError`). This is done deliberately to emphasise that while many binary formats include ASCII based elements and can be usefully manipulated with some text-oriented algorithms, this is not generally the case for arbitrary binary data (blindly applying |