(self, fname: Any)
| 16 | self.bpython_history = bpython_history or [] |
| 17 | |
| 18 | def is_bpython_filename(self, fname: Any) -> bool: |
| 19 | return isinstance(fname, str) and fname.startswith("<bpython-input-") |
| 20 | |
| 21 | def get_bpython_history(self, key: str) -> tuple[int, None, list[str], str]: |
| 22 | """Given a filename provided by remember_bpython_input, |
no outgoing calls
no test coverage detected