From: Barry Warsaw <barry@python.org> Date: Thu, 16 Aug 2001 16:55:10 +0000 (+0000) Subject: Fixed a couple of minor formatting nits where lines were > 79 columns wide. X-Git-Tag: v2.2a3~501 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=2f7045576d46eeee19258cb50c72b8edd25f299f;p=python Fixed a couple of minor formatting nits where lines were > 79 columns wide. --- diff --git a/Modules/selectmodule.c b/Modules/selectmodule.c index 285f6f046c..fa34324f46 100644 --- a/Modules/selectmodule.c +++ b/Modules/selectmodule.c @@ -230,7 +230,8 @@ select_select(PyObject *self, PyObject *args) } else { if (timeout > (double)LONG_MAX) { - PyErr_SetString(PyExc_OverflowError, "timeout period too long"); + PyErr_SetString(PyExc_OverflowError, + "timeout period too long"); return NULL; } seconds = (long)timeout; @@ -368,7 +369,8 @@ update_ufd_array(pollObject *self) static char poll_register_doc[] = "register(fd [, eventmask] ) -> None\n\n\ Register a file descriptor with the polling object.\n\ -fd -- either an integer, or an object with a fileno() method returning an int.\n\ +fd -- either an integer, or an object with a fileno() method returning an\n\ + int.\n\ events -- an optional bitmask describing the type of events to check for"; static PyObject *