diff options
Diffstat (limited to 'Doc/library/array.rst')
-rw-r--r-- | Doc/library/array.rst | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/Doc/library/array.rst b/Doc/library/array.rst index 5194edc4e0..c2b7a44db4 100644 --- a/Doc/library/array.rst +++ b/Doc/library/array.rst @@ -59,9 +59,6 @@ The module defines the following type: from the optional *initializer* value, which must be a list, string, or iterable over elements of the appropriate type. - .. versionchanged:: 2.4 - Formerly, only lists or strings were accepted. - If given a list or string, the initializer is passed to the new array's :meth:`fromlist`, :meth:`fromstring`, or :meth:`fromunicode` method (see below) to add initial items to the array. Otherwise, the iterable initializer is @@ -135,9 +132,6 @@ The following data items and methods are also supported: be raised. If *iterable* is not an array, it must be iterable and its elements must be the right type to be appended to the array. - .. versionchanged:: 2.4 - Formerly, the argument could only be another array. - .. method:: array.fromfile(f, n) |