(self)
| 24 | self.__dict__["connection"].shutdown() |
| 25 | |
| 26 | def accept(self): |
| 27 | connection, address = self.__dict__["connection"].accept() |
| 28 | return SecureSocketConnection(connection), address |
| 29 | |
| 30 | def send(self, buff): |
| 31 | try: |
nothing calls this directly
no test coverage detected