@rtype: int @return: Number of processes being debugged.
(self)
| 1109 | self.next() |
| 1110 | |
| 1111 | def get_debugee_count(self): |
| 1112 | """ |
| 1113 | @rtype: int |
| 1114 | @return: Number of processes being debugged. |
| 1115 | """ |
| 1116 | return len(self.__attachedDebugees) + len(self.__startedDebugees) |
| 1117 | |
| 1118 | def get_debugee_pids(self): |
| 1119 | """ |
no outgoing calls
no test coverage detected