Remove references
(self)
| 398 | del frame #: Delete the frame or it wont be cleaned |
| 399 | |
| 400 | def clean(self): |
| 401 | """ |
| 402 | Remove references |
| 403 | """ |
| 404 | try: |
| 405 | self.req.clearCookies() |
| 406 | self.req.close() |
| 407 | |
| 408 | except Exception: |
| 409 | pass |
| 410 | |
| 411 | else: |
| 412 | self.req = None |
nothing calls this directly
no test coverage detected