(self)
| 37 | |
| 38 | # wrap the splitter engine |
| 39 | def split(self): |
| 40 | global THREAD_FLAG |
| 41 | if not THREAD_FLAG: |
| 42 | self.__root.withdraw() |
| 43 | self.__start() |
| 44 | try: |
| 45 | self.__do_split() |
| 46 | self.__stop('SPLIT - DONE') |
| 47 | except: |
| 48 | self.__stop('SPLIT - FAIL') |
| 49 | self.__root.deiconify() |
| 50 | |
| 51 | # wrap the joiner engine |
| 52 | def join(self): |
no test coverage detected