(self)
| 149 | self._jointhread() |
| 150 | |
| 151 | def cancel_join_thread(self): |
| 152 | debug('Queue.cancel_join_thread()') |
| 153 | self._joincancelled = True |
| 154 | try: |
| 155 | self._jointhread.cancel() |
| 156 | except AttributeError: |
| 157 | pass |
| 158 | |
| 159 | def _terminate_broken(self): |
| 160 | # Close a Queue on error. |