(prompt='')
| 441 | """ |
| 442 | it = iter(inputs) |
| 443 | def mock_input(prompt=''): |
| 444 | try: |
| 445 | return next(it) |
| 446 | except StopIteration: |
| 447 | raise EOFError('No more inputs given') |
| 448 | |
| 449 | return patch('builtins.input', mock_input) |
| 450 |
nothing calls this directly
no outgoing calls
no test coverage detected