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

Method _greedy_changed

IPython/core/completer.py:999–1004  ·  view source on GitHub ↗

update the splitter and readline delims when greedy is changed

(self, change)

Source from the content-addressed store, hash-verified

997
998 @observe('greedy')
999 def _greedy_changed(self, change):
1000 """update the splitter and readline delims when greedy is changed"""
1001 if change['new']:
1002 self.splitter.delims = GREEDY_DELIMS
1003 else:
1004 self.splitter.delims = DELIMS
1005
1006 dict_keys_only = Bool(False,
1007 help="""Whether to show dict key matches only""")

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected