From: Benjamin Peterson Date: Sun, 11 Oct 2015 02:32:20 +0000 (-0700) Subject: add a missing comma (closes #25371) X-Git-Tag: v3.5.1rc1~181^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b397e3b526bc18eba9aa6ded2d53d9be51eb552d;p=python add a missing comma (closes #25371) --- diff --git a/Modules/selectmodule.c b/Modules/selectmodule.c index d436f52917..65fb6a4b38 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 = {