Clears the snapshot of threads and modules.
(self)
| 468 | self.scan_modules() |
| 469 | |
| 470 | def clear(self): |
| 471 | """ |
| 472 | Clears the snapshot of threads and modules. |
| 473 | """ |
| 474 | try: |
| 475 | try: |
| 476 | self.clear_threads() |
| 477 | finally: |
| 478 | self.clear_modules() |
| 479 | finally: |
| 480 | self.close_handle() |
| 481 | |
| 482 | # ------------------------------------------------------------------------------ |
| 483 |
no test coverage detected