summaryrefslogtreecommitdiffstats
path: root/Modules/clinic/selectmodule.c.h
diff options
context:
space:
mode:
authorJakub Stasiak <jakub@stasiak.at>2020-05-25 07:03:48 (GMT)
committerGitHub <noreply@github.com>2020-05-25 07:03:48 (GMT)
commit372ee27d4958302dac7ad6a8711f6fd04771b2e6 (patch)
tree082686687d1b4acb858ff12163bd0e32236d2b85 /Modules/clinic/selectmodule.c.h
parentcba503151056b448b7a3730dc36ef6655550ade5 (diff)
downloadcpython-372ee27d4958302dac7ad6a8711f6fd04771b2e6.zip
cpython-372ee27d4958302dac7ad6a8711f6fd04771b2e6.tar.gz
cpython-372ee27d4958302dac7ad6a8711f6fd04771b2e6.tar.bz2
bpo-38580: Document that select() accepts iterables, not just sequences (GH-16832)
Diffstat (limited to 'Modules/clinic/selectmodule.c.h')
-rw-r--r--Modules/clinic/selectmodule.c.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Modules/clinic/selectmodule.c.h b/Modules/clinic/selectmodule.c.h
index 670af6a..888054b 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=26bb05e5fba2bfd1 input=a9049054013a1b77]*/
+/*[clinic end generated code: output=029f23fbe000d7f7 input=a9049054013a1b77]*/