(_method)
| 787 | @patch('sys.stdin.read', lambda *args: inputs) |
| 788 | # @patch('sys.stdout.write', print) |
| 789 | def _inner_call_method(_method): |
| 790 | try: |
| 791 | return _method() |
| 792 | except SystemExit: |
| 793 | pass |
| 794 | finally: |
| 795 | pass |
| 796 | |
| 797 | return _inner_call_method(method) |
| 798 |