(self)
| 50 | |
| 51 | # wrap the joiner engine |
| 52 | def join(self): |
| 53 | global THREAD_FLAG |
| 54 | if not THREAD_FLAG: |
| 55 | self.__root.withdraw() |
| 56 | self.__start() |
| 57 | try: |
| 58 | self.__do_join() |
| 59 | self.__stop('JOIN - DONE') |
| 60 | except: |
| 61 | self.__stop('JOIN - FAIL') |
| 62 | self.__root.deiconify() |
| 63 | |
| 64 | # remind the user that the program is working |
| 65 | def __working(self): |
no test coverage detected