Suspend the thread
(self)
| 925 | return winproxy.ResumeThread(self.handle) |
| 926 | |
| 927 | def suspend(self): |
| 928 | """Suspend the thread""" |
| 929 | return winproxy.SuspendThread(self.handle) |
| 930 | |
| 931 | def _get_handle(self): |
| 932 | return winproxy.OpenThread(dwThreadId=self.tid) |
no outgoing calls
no test coverage detected