(self, ctxt)
| 70 | core.BNFreeDownloadInstance(self.handle) |
| 71 | |
| 72 | def _destroy_instance(self, ctxt): |
| 73 | try: |
| 74 | if self in self.__class__._registered_instances: |
| 75 | self.__class__._registered_instances.remove(self) |
| 76 | self.perform_destroy_instance() |
| 77 | except: |
| 78 | log_error(traceback.format_exc()) |
| 79 | |
| 80 | def _perform_request(self, ctxt, url): |
| 81 | try: |
nothing calls this directly
no test coverage detected