()
| 36 | |
| 37 | @contextmanager |
| 38 | def greedy_completion(): |
| 39 | ip = get_ipython() |
| 40 | greedy_original = ip.Completer.greedy |
| 41 | try: |
| 42 | ip.Completer.greedy = True |
| 43 | yield |
| 44 | finally: |
| 45 | ip.Completer.greedy = greedy_original |
| 46 | |
| 47 | |
| 48 | def test_protect_filename(): |
no test coverage detected