]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Doc: Fix the array.fromfile method doc (GH-22037) (GH-25630)
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Mon, 26 Apr 2021 14:24:17 +0000 (07:24 -0700)
committerGitHub <noreply@github.com>
Mon, 26 Apr 2021 14:24:17 +0000 (07:24 -0700)
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.
(cherry picked from commit bd25bcd37a3a41a0e08208e969f0c02287850c61)

Co-authored-by: Adorilson Bezerra <adorilson@gmail.com>
Co-authored-by: Adorilson Bezerra <adorilson@gmail.com>
Doc/library/array.rst

index 78020738bf4f75b1206ec89e3a8c3130d00d7f34..f2f7894e1bf0f0643c3fc0db9ff825e8c647fdac 100644 (file)
@@ -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)