[Python-3000-checkins] r59121 - python/branches/py3k/Doc/library/functions.rst

georg.brandl python-3000-checkins at python.org
Thu Nov 22 15:16:00 CET 2007


Author: georg.brandl
Date: Thu Nov 22 15:16:00 2007
New Revision: 59121

Modified:
   python/branches/py3k/Doc/library/functions.rst
Log:
Fix, thanks to Nick.


Modified: python/branches/py3k/Doc/library/functions.rst
==============================================================================
--- python/branches/py3k/Doc/library/functions.rst	(original)
+++ python/branches/py3k/Doc/library/functions.rst	Thu Nov 22 15:16:00 2007
@@ -120,7 +120,7 @@
 
 .. 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`.


More information about the Python-3000-checkins mailing list