Get default timeout Returns ---------- _default_timeout: int or float Return the global timeout setting (in seconds) to connect.
()
| 79 | |
| 80 | |
| 81 | def getdefaulttimeout() -> Optional[Union[int, float]]: |
| 82 | """ |
| 83 | Get default timeout |
| 84 | |
| 85 | Returns |
| 86 | ---------- |
| 87 | _default_timeout: int or float |
| 88 | Return the global timeout setting (in seconds) to connect. |
| 89 | """ |
| 90 | return _default_timeout |
| 91 | |
| 92 | |
| 93 | def recv(sock: socket.socket, bufsize: int) -> bytes: |
no outgoing calls
no test coverage detected
searching dependent graphs…