summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorAndrew Svetlov <andrew.svetlov@gmail.com>2012-10-02 15:39:25 (GMT)
committerAndrew Svetlov <andrew.svetlov@gmail.com>2012-10-02 15:39:25 (GMT)
commitf532035551368b254e86d0e68004983c107f33f5 (patch)
treee17337ed30f1b50d4aa2cd5088eec9155432e793 /Doc
parentd0fe3e5abb7413f8ad709c012076d5b268ddd7bd (diff)
downloadcpython-f532035551368b254e86d0e68004983c107f33f5.zip
cpython-f532035551368b254e86d0e68004983c107f33f5.tar.gz
cpython-f532035551368b254e86d0e68004983c107f33f5.tar.bz2
Close open bracket, thanks to Josh Helzer from docs@
Diffstat (limited to 'Doc')
-rw-r--r--Doc/reference/datamodel.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/reference/datamodel.rst b/Doc/reference/datamodel.rst
index 2ddb852..7fad05e 100644
--- a/Doc/reference/datamodel.rst
+++ b/Doc/reference/datamodel.rst
@@ -305,7 +305,7 @@ Sequences
A bytes object is an immutable array. The items are 8-bit bytes,
represented by integers in the range 0 <= x < 256. Bytes literals
- (like ``b'abc'`` and the built-in function :func:`bytes` can be used to
+ (like ``b'abc'``) and the built-in function :func:`bytes` can be used to
construct bytes objects. Also, bytes objects can be decoded to strings
via the :meth:`decode` method.