diff options
author | Adorilson Bezerra <adorilson@gmail.com> | 2021-04-26 14:19:21 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-26 14:19:21 (GMT) |
commit | bd25bcd37a3a41a0e08208e969f0c02287850c61 (patch) | |
tree | ea5a99a3906d2b3558e17fb4871ae783aaf0d6c8 /Doc/library/array.rst | |
parent | 5f87915d4af724f375b00dde2b948468d3e4ca97 (diff) | |
download | cpython-bd25bcd37a3a41a0e08208e969f0c02287850c61.zip cpython-bd25bcd37a3a41a0e08208e969f0c02287850c61.tar.gz cpython-bd25bcd37a3a41a0e08208e969f0c02287850c61.tar.bz2 |
Doc: Fix the array.fromfile method doc (GH-22037)
The check about the f argument type was removed in this commit:
https://github.com/python/cpython/commit/2c94aa567e525c82041ad68a3174d8c3acbf37e2
Thanks for Pedro Arthur Duarte (pedroarthur.jedi at gmail.com) by the help with
this bug.
Diffstat (limited to 'Doc/library/array.rst')
-rw-r--r-- | Doc/library/array.rst | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Doc/library/array.rst b/Doc/library/array.rst index 18a768d..c7f137d 100644 --- a/Doc/library/array.rst +++ b/Doc/library/array.rst @@ -160,8 +160,7 @@ The following data items and methods are also supported: Read *n* items (as machine values) from the :term:`file object` *f* and append them to the end of the array. If less than *n* items are available, :exc:`EOFError` is raised, but the items that were available are still - inserted into the array. *f* must be a real built-in file object; something - else with a :meth:`read` method won't do. + inserted into the array. .. method:: array.fromlist(list) |