(self, code=None)
| 6 | """Redefine builtins 'quit' and 'exit' not so close stdin""" |
| 7 | |
| 8 | def __call__(self, code=None): |
| 9 | raise SystemExit(code) |
| 10 | |
| 11 | __call__.__name__ = "FakeQuitCall" |
| 12 | builtins.quit.__class__.__call__ = __call__ |
nothing calls this directly
no outgoing calls
no test coverage detected