()
| 995 | fileno = -1 |
| 996 | |
| 997 | def _request_authentication(): |
| 998 | nonlocal sock, rfile, fileno |
| 999 | sock = con._sock |
| 1000 | assert sock is not None |
| 1001 | fileno = sock.fileno() |
| 1002 | rfile = con._rfile |
| 1003 | assert rfile is not None |
| 1004 | raise TypeError |
| 1005 | |
| 1006 | con._request_authentication = _request_authentication |
| 1007 |
no outgoing calls
no test coverage detected