diff options
author | Georg Brandl <georg@python.org> | 2007-11-22 14:16:00 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2007-11-22 14:16:00 (GMT) |
commit | 24eac034be17067f4df3a277ae42e30af138441a (patch) | |
tree | 9ac65a0c1233c2a114373ef67bf57b42b4f8e64f /Doc/library/functions.rst | |
parent | 9541463a7d38fde1109a275599455991aa6b8890 (diff) | |
download | cpython-24eac034be17067f4df3a277ae42e30af138441a.zip cpython-24eac034be17067f4df3a277ae42e30af138441a.tar.gz cpython-24eac034be17067f4df3a277ae42e30af138441a.tar.bz2 |
Fix, thanks to Nick.
Diffstat (limited to 'Doc/library/functions.rst')
-rw-r--r-- | Doc/library/functions.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/functions.rst b/Doc/library/functions.rst index 752bd50..08566fa 100644 --- a/Doc/library/functions.rst +++ b/Doc/library/functions.rst @@ -120,7 +120,7 @@ available. They are listed here in alphabetical order. .. function:: bytearray([arg[, encoding[, errors]]]) - Return a new array of bytes. The :class:`bytearray` type is an immutable + Return a new array of bytes. The :class:`bytearray` type is a mutable sequence of integers in the range 0 <= x < 256. It has most of the usual methods of mutable sequences, described in :ref:`typesseq-mutable`, as well as most methods that the :class:`str` type has, see :ref:`bytes-methods`. |