@rtype: L{Thread} @return: Parent Thread object.
(self)
| 220 | self.__process = process |
| 221 | |
| 222 | def get_thread(self): |
| 223 | """ |
| 224 | @rtype: L{Thread} |
| 225 | @return: Parent Thread object. |
| 226 | """ |
| 227 | if self.__thread is not None: |
| 228 | return self.__thread |
| 229 | self.__load_Thread_class() |
| 230 | self.__thread = Thread(self.get_tid()) |
| 231 | return self.__thread |
| 232 | |
| 233 | def set_thread(self, thread=None): |
| 234 | """ |
no test coverage detected