(self, key: Any)
| 51 | return super().__contains__(key) |
| 52 | |
| 53 | def __delitem__(self, key: Any) -> None: |
| 54 | if not self.is_bpython_filename(key): |
| 55 | super().__delitem__(key) |
| 56 | |
| 57 | |
| 58 | def _bpython_clear_linecache() -> None: |
nothing calls this directly
no test coverage detected