MCPcopy Create free account
hub / github.com/ipython/ipython / greedy_completion

Function greedy_completion

IPython/core/tests/test_completer.py:38–45  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

36
37@contextmanager
38def 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
48def test_protect_filename():

Calls 1

get_ipythonFunction · 0.90

Tested by

no test coverage detected