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

Function _inherits

pydevd_plugins/django_debug.py:167–175  ·  view source on GitHub ↗
(cls, *names)

Source from the content-addressed store, hash-verified

165
166
167def _inherits(cls, *names):
168 if cls.__name__ in names:
169 return True
170 inherits_node = False
171 for base in inspect.getmro(cls):
172 if base.__name__ in names:
173 inherits_node = True
174 break
175 return inherits_node
176
177
178_IGNORE_RENDER_OF_CLASSES = ("TextNode", "NodeList")

Callers 2

_is_django_render_callFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected