Close the socket
(self, exc_type, exc_value, traceback)
| 58 | return self |
| 59 | |
| 60 | def __exit__(self, exc_type, exc_value, traceback): |
| 61 | # type: (Optional[Type[BaseException]], Optional[BaseException], Optional[Any]) -> None # noqa: E501 |
| 62 | """Close the socket""" |
| 63 | self.close() |
| 64 | |
| 65 | def sr(self, *args, **kargs): |
| 66 | # type: (Any, Any) -> Tuple[SndRcvList, PacketList] |