diff options
author | Benjamin Peterson <benjamin@python.org> | 2015-10-11 02:32:33 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2015-10-11 02:32:33 (GMT) |
commit | e5df40727c3bb24dbf38b74a6c1e0e2a6b70b429 (patch) | |
tree | 988c9a8b1d6ff0c6830c710593ee73b5c9324bf0 /Modules/selectmodule.c | |
parent | ea620465a56547bd92bbbe42baa6dc5eb68ea729 (diff) | |
parent | b397e3b526bc18eba9aa6ded2d53d9be51eb552d (diff) | |
download | cpython-e5df40727c3bb24dbf38b74a6c1e0e2a6b70b429.zip cpython-e5df40727c3bb24dbf38b74a6c1e0e2a6b70b429.tar.gz cpython-e5df40727c3bb24dbf38b74a6c1e0e2a6b70b429.tar.bz2 |
merge 3.4 (#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 44ff3dd..b3ac807 100644 --- a/Modules/selectmodule.c +++ b/Modules/selectmodule.c @@ -2363,7 +2363,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[] = { @@ -2381,7 +2381,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 = { |