@rtype: int @return: Number of processes being debugged.
(self)
| 185 | self.stop() |
| 186 | |
| 187 | def __len__(self): |
| 188 | """ |
| 189 | @rtype: int |
| 190 | @return: Number of processes being debugged. |
| 191 | """ |
| 192 | return self.get_debugee_count() |
| 193 | |
| 194 | # TODO: maybe custom __bool__ to break out of loop() ? |
| 195 | # it already does work (because of __len__) but it'd be |
nothing calls this directly
no test coverage detected