]> granicus.if.org Git - python/commitdiff
Add missing closing parentheses (GH-8144)
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Sat, 7 Jul 2018 19:34:43 +0000 (12:34 -0700)
committerGitHub <noreply@github.com>
Sat, 7 Jul 2018 19:34:43 +0000 (12:34 -0700)
(cherry picked from commit 03dd0e794e26afb5fa998d10ae2071e2cb0bc634)

Co-authored-by: Andrés Delfino <adelfino@gmail.com>
Doc/library/stdtypes.rst

index 19c7f4127cffc21aceb9ee82ae24b74a3e798019..1df2148cbb9ebc10c1addb9dd2d0da0afac10d93 100644 (file)
@@ -2305,7 +2305,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