(self, msg: str)
| 53 | |
| 54 | class RaisingArgumentParser(argparse.ArgumentParser): |
| 55 | def error(self, msg: str) -> Never: |
| 56 | raise ArgumentParserFailed() |
| 57 | |
| 58 | |
| 59 | def version_banner(base: str = "bpython") -> str: |
nothing calls this directly
no test coverage detected