diff options
author | Georg Brandl <georg@python.org> | 2008-12-06 08:12:11 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2008-12-06 08:12:11 (GMT) |
commit | d2aa7e66270708a580ad166fa02f7c0f05249084 (patch) | |
tree | 2ec17400631dcc4f7aa4ffc4899b95f7432d9158 /Doc/whatsnew/3.0.rst | |
parent | 9af5235fa5cc6a92054ab9bd924d5040be1d0303 (diff) | |
download | cpython-d2aa7e66270708a580ad166fa02f7c0f05249084.zip cpython-d2aa7e66270708a580ad166fa02f7c0f05249084.tar.gz cpython-d2aa7e66270708a580ad166fa02f7c0f05249084.tar.bz2 |
#4557: remove 'c' typecode from array docs and add a note in whatsnew.
Diffstat (limited to 'Doc/whatsnew/3.0.rst')
-rw-r--r-- | Doc/whatsnew/3.0.rst | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Doc/whatsnew/3.0.rst b/Doc/whatsnew/3.0.rst index 3e4188f..68e8c5a 100644 --- a/Doc/whatsnew/3.0.rst +++ b/Doc/whatsnew/3.0.rst @@ -625,7 +625,9 @@ Some other changes to standard library modules, not covered by * Cleanup of the :class:`array.array` type: the :meth:`read` and :meth:`write` methods are gone; use :meth:`fromfile` and - :meth:`tofile` instead. + :meth:`tofile` instead. Also, the ``'c'`` typecode for array is + gone -- use either ``'b'`` for bytes or ``'u'`` for Unicode + characters. * Cleanup of the :mod:`operator` module: removed :func:`sequenceIncludes` and :func:`isCallable`. |