diff options
author | Benjamin Peterson <benjamin@python.org> | 2015-10-11 02:32:20 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2015-10-11 02:32:20 (GMT) |
commit | b397e3b526bc18eba9aa6ded2d53d9be51eb552d (patch) | |
tree | 213239dad9130fa21b4848d1dace274907269ff9 /Modules/selectmodule.c | |
parent | 0289155b72a539d55191985ed783c249668b17c4 (diff) | |
download | cpython-b397e3b526bc18eba9aa6ded2d53d9be51eb552d.zip cpython-b397e3b526bc18eba9aa6ded2d53d9be51eb552d.tar.gz cpython-b397e3b526bc18eba9aa6ded2d53d9be51eb552d.tar.bz2 |
add a missing comma (closes #25371)
Diffstat (limited to 'Modules/selectmodule.c')
-rw-r--r-- | Modules/selectmodule.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Modules/selectmodule.c b/Modules/selectmodule.c index d436f52..65fb6a4 100644 --- a/Modules/selectmodule.c +++ b/Modules/selectmodule.c @@ -2256,7 +2256,7 @@ arguments; each contains the subset of the corresponding file descriptors\n\ that are ready.\n\ \n\ *** IMPORTANT NOTICE ***\n\ -On Windows only sockets are supported; on Unix, all file\n\ +On Windows, only sockets are supported; on Unix, all file\n\ descriptors can be used."); static PyMethodDef select_methods[] = { @@ -2274,7 +2274,7 @@ PyDoc_STRVAR(module_doc, "This module supports asynchronous I/O on multiple file descriptors.\n\ \n\ *** IMPORTANT NOTICE ***\n\ -On Windows only sockets are supported; on Unix, all file descriptors."); +On Windows, only sockets are supported; on Unix, all file descriptors."); static struct PyModuleDef selectmodule = { |