From: Guido van Rossum Date: Mon, 1 Nov 1993 16:27:16 +0000 (+0000) Subject: * selectmodule.c (select_select): timeout argument may be None with same X-Git-Tag: v1.0.1~162 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=c7a22703e71f6074818e4661b0bbb57bbd726af7;p=thirdparty%2FPython%2Fcpython.git * selectmodule.c (select_select): timeout argument may be None with same meaning as no 4th argument --- diff --git a/Modules/selectmodule.c b/Modules/selectmodule.c index 81fedd51956c..77ea61cc16d3 100644 --- a/Modules/selectmodule.c +++ b/Modules/selectmodule.c @@ -114,7 +114,7 @@ select_select(self, args) { object *fd2obj[FD_SETSIZE]; object *ifdlist, *ofdlist, *efdlist; - object *ret; + object *ret, *tout; fd_set ifdset, ofdset, efdset; double timeout; struct timeval tv, *tvp; @@ -124,12 +124,18 @@ select_select(self, args) /* Get args. Looks funny because of optional timeout argument */ - if ( getargs(args, "(OOOd)", &ifdlist, &ofdlist, &efdlist, &timeout) ) { + if ( getargs(args, "(OOOO)", &ifdlist, &ofdlist, &efdlist, &tout) ) { seconds = (int)timeout; - timeout = timeout - (double)seconds; - tv.tv_sec = seconds; - tv.tv_usec = (int)(timeout*1000000.0); - tvp = &tv; + if (tout == None) + tvp = (struct timeval *)0; + else { + if (!getargs(tout, "%d;timeout must be float or None", &timeout)) + return NULL; + timeout = timeout - (double)seconds; + tv.tv_sec = seconds; + tv.tv_usec = (int)(timeout*1000000.0); + tvp = &tv; + } } else { /* Doesn't have 4 args, that means no timeout */ err_clear();