File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -115,7 +115,7 @@ The module defines the following:
115115 :ref: `kevent-objects ` below for the methods supported by kevent objects.
116116
117117
118- .. function :: select(rlist, wlist, xlist[ , timeout] )
118+ .. function :: select(rlist, wlist, xlist, timeout=None )
119119
120120 This is a straightforward interface to the Unix :c:func: `!select ` system call.
121121 The first three arguments are iterables of 'waitable objects': either
@@ -130,7 +130,8 @@ The module defines the following:
130130 Empty iterables are allowed, but acceptance of three empty iterables is
131131 platform-dependent. (It is known to work on Unix but not on Windows.) The
132132 optional *timeout * argument specifies a time-out as a floating-point number
133- in seconds. When the *timeout * argument is omitted the function blocks until
133+ in seconds.
134+ When the *timeout * argument is omitted or ``None ``, the function blocks until
134135 at least one file descriptor is ready. A time-out value of zero specifies a
135136 poll and never blocks.
136137
You can’t perform that action at this time.
0 commit comments