(self)
| 623 | return self._thread_sharing_count > 0 |
| 624 | |
| 625 | def inc_thread_sharing(self): |
| 626 | with self._thread_sharing_lock: |
| 627 | self._thread_sharing_count += 1 |
| 628 | |
| 629 | def dec_thread_sharing(self): |
| 630 | with self._thread_sharing_lock: |
no outgoing calls