(handle, timeout)
| 144 | WIN32 = (sys.platform == "win32") |
| 145 | |
| 146 | def wait_for_handle(handle, timeout): |
| 147 | if timeout is not None and timeout < 0.0: |
| 148 | timeout = None |
| 149 | return wait([handle], timeout) |
| 150 | |
| 151 | try: |
| 152 | MAXFD = os.sysconf("SC_OPEN_MAX") |
no test coverage detected
searching dependent graphs…