[Python-checkins] Add missing closing parentheses (GH-8144)

Serhiy Storchaka webhook-mailer at python.org
Sat Jul 7 15:00:49 EDT 2018


https://github.com/python/cpython/commit/03dd0e794e26afb5fa998d10ae2071e2cb0bc634
commit: 03dd0e794e26afb5fa998d10ae2071e2cb0bc634
branch: master
author: Andrés Delfino <adelfino at gmail.com>
committer: Serhiy Storchaka <storchaka at gmail.com>
date: 2018-07-07T22:00:46+03:00
summary:

Add missing closing parentheses (GH-8144)

files:
M Doc/library/stdtypes.rst

diff --git a/Doc/library/stdtypes.rst b/Doc/library/stdtypes.rst
index 1211ece6ad64..c9e3a94786c2 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



More information about the Python-checkins mailing list