From: Georg Brandl Date: Sat, 11 Jul 2009 14:23:38 +0000 (+0000) Subject: array.array is actually a class. X-Git-Tag: v2.7a1~793 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c91cbb948a223f0921300dc7b4f4b762b60420f3;p=thirdparty%2FPython%2Fcpython.git array.array is actually a class. --- diff --git a/Doc/library/array.rst b/Doc/library/array.rst index f48bf06d9baa..f7fb4e372c6e 100644 --- a/Doc/library/array.rst +++ b/Doc/library/array.rst @@ -58,9 +58,9 @@ unsigned (long) integers. The module defines the following type: -.. function:: array(typecode[, initializer]) +.. class:: array(typecode[, initializer]) - Return a new array whose items are restricted by *typecode*, and initialized + A new array whose items are restricted by *typecode*, and initialized from the optional *initializer* value, which must be a list, string, or iterable over elements of the appropriate type. @@ -75,7 +75,7 @@ The module defines the following type: .. data:: ArrayType - Obsolete alias for :func:`array`. + Obsolete alias for :class:`array`. Array objects support the ordinary sequence operations of indexing, slicing, concatenation, and multiplication. When using slice assignment, the assigned @@ -85,7 +85,6 @@ and may be used wherever buffer objects are supported. The following data items and methods are also supported: - .. attribute:: array.typecode The typecode character used to create the array.