Message308645
Currently we have the following methods:
* socket.settimeout(t) -- can set the socket in blocking mode, when t==0.
* socket.setblocking(flag) -- sets in blocking or non-blocking mode.
* socket.gettimeout() -- returns 0 when socket is in non-blocking mode.
socket.gettimeout() is the only easy way of checking if the socket is non-blocking or blocking, but it's not intuitive to use it. It's especially strange that we have a setblocking() method without a corresponding getblocking().
I propose to add a 'socket.getblocking() -> bool' method. |
|
| Date |
User |
Action |
Args |
| 2017-12-19 14:23:24 | yselivanov | set | recipients:
+ yselivanov |
| 2017-12-19 14:23:24 | yselivanov | set | messageid: <[email protected]> |
| 2017-12-19 14:23:24 | yselivanov | link | issue32373 messages |
| 2017-12-19 14:23:24 | yselivanov | create | |
|