(self, debug=0, store=0, session=None, **kargs)
| 958 | self.start() |
| 959 | |
| 960 | def parse_args(self, debug=0, store=0, session=None, **kargs): |
| 961 | # type: (int, int, Any, Any) -> None |
| 962 | self.debug_level = debug |
| 963 | if debug: |
| 964 | conf.logLevel = logging.DEBUG |
| 965 | self.atmt_session = session |
| 966 | self.socket_kargs = kargs |
| 967 | self.store_packets = store |
| 968 | |
| 969 | @classmethod |
| 970 | def spawn(cls, |
no outgoing calls
no test coverage detected