diff options
author | Tal Einat <taleinat+github@gmail.com> | 2020-05-26 12:59:32 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-26 12:59:32 (GMT) |
commit | e3e800f3d28881cc9de38cd9bcbcf8fbdea238a6 (patch) | |
tree | 0bbdd390c85f2e545fd73c3bfbc180fad44a3344 /Modules/clinic | |
parent | 5ff5edfef63b3dbc1abb004b3fa4b3db87e79ff9 (diff) | |
download | cpython-e3e800f3d28881cc9de38cd9bcbcf8fbdea238a6.zip cpython-e3e800f3d28881cc9de38cd9bcbcf8fbdea238a6.tar.gz cpython-e3e800f3d28881cc9de38cd9bcbcf8fbdea238a6.tar.bz2 |
[3.8] bpo-38580: Document that select() accepts iterables, not just sequences (GH-16832)
(cherry picked from commit 372ee27d4958302dac7ad6a8711f6fd04771b2e6)
Co-authored-by: Jakub Stasiak <jakub@stasiak.at>
Diffstat (limited to 'Modules/clinic')
-rw-r--r-- | Modules/clinic/selectmodule.c.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Modules/clinic/selectmodule.c.h b/Modules/clinic/selectmodule.c.h index 9015816..51855d9 100644 --- a/Modules/clinic/selectmodule.c.h +++ b/Modules/clinic/selectmodule.c.h @@ -8,7 +8,7 @@ PyDoc_STRVAR(select_select__doc__, "\n" "Wait until one or more file descriptors are ready for some kind of I/O.\n" "\n" -"The first three arguments are sequences of file descriptors to be waited for:\n" +"The first three arguments are iterables of file descriptors to be waited for:\n" "rlist -- wait until ready for reading\n" "wlist -- wait until ready for writing\n" "xlist -- wait for an \"exceptional condition\"\n" @@ -1215,4 +1215,4 @@ exit: #ifndef SELECT_KQUEUE_CONTROL_METHODDEF #define SELECT_KQUEUE_CONTROL_METHODDEF #endif /* !defined(SELECT_KQUEUE_CONTROL_METHODDEF) */ -/*[clinic end generated code: output=03041f3d09b04a3d input=a9049054013a1b77]*/ +/*[clinic end generated code: output=9b4b1e1cae1f3afb input=a9049054013a1b77]*/ |