MCPcopy Index your code
hub / github.com/fabioz/PyDev.Debugger / info

Method info

tests_python/test_safe_repr.py:223–233  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

221
222 @property
223 def info(self):
224 try:
225 return self._info
226 except AttributeError:
227 for info in SafeRepr.collection_types:
228 ctype, _, _, _ = info
229 if self.CLASS is ctype:
230 type(self)._info = info
231 return info
232 else:
233 raise TypeError("unsupported")
234
235 def _combine(self, items, prefix, suffix, large):
236 contents = ", ".join(str(item) for item in items)

Callers 15

_on_runMethod · 0.80
_notify_after_timeoutMethod · 0.80
on_thread_suspendMethod · 0.80
on_thread_resumeMethod · 0.80
runMethod · 0.80
_do_wait_suspendMethod · 0.80
mainFunction · 0.80
_resolve_listing_partsFunction · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected