(text)
| 440 | ip = get_ipython() |
| 441 | |
| 442 | def _(text): |
| 443 | return ip.Completer._complete( |
| 444 | cursor_line=0, cursor_pos=len(text), full_text=text |
| 445 | )["IPCompleter.file_matcher"]["completions"] |
| 446 | |
| 447 | with TemporaryWorkingDirectory(): |
| 448 | name = "foo'bar" |
nothing calls this directly
no test coverage detected