@rtype: list( int... ) @return: Global IDs of processes being debugged.
(self)
| 1116 | return len(self.__attachedDebugees) + len(self.__startedDebugees) |
| 1117 | |
| 1118 | def get_debugee_pids(self): |
| 1119 | """ |
| 1120 | @rtype: list( int... ) |
| 1121 | @return: Global IDs of processes being debugged. |
| 1122 | """ |
| 1123 | return list(self.__attachedDebugees) + list(self.__startedDebugees) |
| 1124 | |
| 1125 | def is_debugee(self, dwProcessId): |
| 1126 | """ |
no outgoing calls
no test coverage detected