]> granicus.if.org Git - python/commitdiff
add a missing comma (closes #25371)
authorBenjamin Peterson <benjamin@python.org>
Sun, 11 Oct 2015 02:32:20 +0000 (19:32 -0700)
committerBenjamin Peterson <benjamin@python.org>
Sun, 11 Oct 2015 02:32:20 +0000 (19:32 -0700)
Modules/selectmodule.c

index d436f52917d68a82ef5d99aea495164aea1adc55..65fb6a4b389845dc66b184ed3d9bd5b769dab39f 100644 (file)
@@ -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 = {