38 self._target = targ |
38 self._target = targ |
39 self._args = args |
39 self._args = args |
40 self._kwargs = kwargs |
40 self._kwargs = kwargs |
41 self._mainThread = mainThread |
41 self._mainThread = mainThread |
42 # thread running tracks execution state of client code |
42 # thread running tracks execution state of client code |
43 # it will always be 0 for main thread as that is tracked |
43 # it will always be False for main thread as that is tracked |
44 # by DebugClientThreads and Bdb... |
44 # by DebugClientThreads and Bdb... |
45 self._threadRunning = False |
45 self._threadRunning = False |
46 |
46 |
47 self.__ident = None # id of this thread. |
47 self.__ident = None # id of this thread. |
48 self.__name = "" |
48 self.__name = "" |