]> granicus.if.org Git - python/commitdiff
Add missing closing parentheses (GH-8144)
authorAndrés Delfino <adelfino@gmail.com>
Sat, 7 Jul 2018 19:00:46 +0000 (16:00 -0300)
committerSerhiy Storchaka <storchaka@gmail.com>
Sat, 7 Jul 2018 19:00:46 +0000 (22:00 +0300)
Doc/library/stdtypes.rst

index 1211ece6ad648065fcc08aea497d16e51246060d..c9e3a94786c2759518abbbc47f7c3b61efe9fd2a 100644 (file)
@@ -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