(self, level, optname, buflen=None)
| 907 | return os.write(self.fd, *args) |
| 908 | |
| 909 | def getsockopt(self, level, optname, buflen=None): |
| 910 | if (level == socket.SOL_SOCKET and |
| 911 | optname == socket.SO_ERROR and |
| 912 | not buflen): |
| 913 | return 0 |
| 914 | raise NotImplementedError("Only asyncore specific behaviour " |
| 915 | "implemented.") |
| 916 | |
| 917 | read = recv |
| 918 | write = send |
no outgoing calls
no test coverage detected