(_method)
| 665 | @patch("sys.stdin.read", lambda *args: inputs) |
| 666 | # @patch('sys.stdout.write', print) |
| 667 | def _inner_call_method(_method): |
| 668 | try: |
| 669 | return _method() |
| 670 | except SystemExit as e: |
| 671 | pass |
| 672 | finally: |
| 673 | pass |
| 674 | |
| 675 | return _inner_call_method(method) |
| 676 |