MCPcopy Create free account
hub / github.com/fabioz/PyDev.Debugger / _skip_key_in_dict

Function _skip_key_in_dict

tests_python/test_debugger.py:1952–1959  ·  view source on GitHub ↗
(key)

Source from the content-addressed store, hash-verified

1950 assert obj_var["isContainer"] == "True"
1951
1952 def _skip_key_in_dict(key):
1953 try:
1954 int(key)
1955 except ValueError:
1956 if "more" in key or "[" in key:
1957 return False
1958 return True
1959 return False
1960
1961 def collect_vars(locator, level=0):
1962 writer.write("%s\t%s\t%s\t%s" % (CMD_GET_VARIABLE, writer.next_seq(), hit.thread_id, locator))

Callers 1

collect_varsFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected