(self, flag=None)
| 2519 | self.join() |
| 2520 | |
| 2521 | def start(self, flag=None): |
| 2522 | if not self._in_context: |
| 2523 | raise ValueError( |
| 2524 | 'ThreadedEchoServer must be used as a context manager') |
| 2525 | self.flag = flag |
| 2526 | threading.Thread.start(self) |
| 2527 | |
| 2528 | def run(self): |
| 2529 | if not self._in_context: |
no outgoing calls
no test coverage detected