| 448 | ############## |
| 449 | |
| 450 | class _StateWrapper: |
| 451 | __name__ = None # type: str |
| 452 | atmt_type = None # type: str |
| 453 | atmt_state = None # type: str |
| 454 | atmt_initial = None # type: int |
| 455 | atmt_final = None # type: int |
| 456 | atmt_stop = None # type: int |
| 457 | atmt_error = None # type: int |
| 458 | atmt_origfunc = None # type: _StateWrapper |
| 459 | atmt_prio = None # type: int |
| 460 | atmt_as_supersocket = None # type: Optional[str] |
| 461 | atmt_condname = None # type: str |
| 462 | atmt_ioname = None # type: str |
| 463 | atmt_timeout = None # type: Timer |
| 464 | atmt_cond = None # type: Dict[str, int] |
| 465 | __code__ = None # type: types.CodeType |
| 466 | __call__ = None # type: Callable[..., ATMT.NewStateRequested] |
| 467 | |
| 468 | |
| 469 | class ATMT: |
no outgoing calls
no test coverage detected
searching dependent graphs…