(self, flag=None)
| 2798 | self.join() |
| 2799 | |
| 2800 | def start(self, flag=None): |
| 2801 | if not self._in_context: |
| 2802 | raise ValueError( |
| 2803 | 'ThreadedEchoServer must be used as a context manager') |
| 2804 | self.flag = flag |
| 2805 | threading.Thread.start(self) |
| 2806 | |
| 2807 | def run(self): |
| 2808 | if not self._in_context: |
no outgoing calls
no test coverage detected