From: Georg Brandl Date: Thu, 22 Nov 2007 14:16:00 +0000 (+0000) Subject: Fix, thanks to Nick. X-Git-Tag: v3.0a2~110 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=24eac034be17067f4df3a277ae42e30af138441a;p=thirdparty%2FPython%2Fcpython.git Fix, thanks to Nick. --- diff --git a/Doc/library/functions.rst b/Doc/library/functions.rst index 752bd5045554..08566facf4d4 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`.