clean everything and remove references
(self)
| 605 | self.log.debug("File %s not skipped, because it does not exists." % self.pyfile.name) |
| 606 | |
| 607 | def clean(self): |
| 608 | """ clean everything and remove references """ |
| 609 | if hasattr(self, "pyfile"): |
| 610 | del self.pyfile |
| 611 | if hasattr(self, "req"): |
| 612 | self.req.close() |
| 613 | del self.req |
| 614 | if hasattr(self, "thread"): |
| 615 | del self.thread |
| 616 | if hasattr(self, "html"): |
| 617 | del self.html |
no test coverage detected