diff options
author | Andrew Svetlov <andrew.svetlov@gmail.com> | 2012-10-02 15:40:00 (GMT) |
---|---|---|
committer | Andrew Svetlov <andrew.svetlov@gmail.com> | 2012-10-02 15:40:00 (GMT) |
commit | 5b602757bf5c9b5dbb29a1b28b448a9723cf2814 (patch) | |
tree | 19b15d2a66ff95b8d63a1901d95e28b36bd4d96e /Doc/reference/datamodel.rst | |
parent | 3e763daddeb1148018a08044343a3a0ddcfceaa3 (diff) | |
parent | f532035551368b254e86d0e68004983c107f33f5 (diff) | |
download | cpython-5b602757bf5c9b5dbb29a1b28b448a9723cf2814.zip cpython-5b602757bf5c9b5dbb29a1b28b448a9723cf2814.tar.gz cpython-5b602757bf5c9b5dbb29a1b28b448a9723cf2814.tar.bz2 |
Merge: Close open bracket, thanks to Josh Helzer from docs@
Diffstat (limited to 'Doc/reference/datamodel.rst')
-rw-r--r-- | Doc/reference/datamodel.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/reference/datamodel.rst b/Doc/reference/datamodel.rst index 1c8c190..6b23d3f 100644 --- a/Doc/reference/datamodel.rst +++ b/Doc/reference/datamodel.rst @@ -312,7 +312,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. |