MCPcopy Create free account
hub / github.com/ronreiter/interactive-tutorials / dependencies

Method dependencies

suds/xsd/sxbasic.py:459–471  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

457 'group')
458
459 def dependencies(self):
460 deps = []
461 midx = None
462 if self.ref is not None:
463 query = TypeQuery(self.ref)
464 super = query.execute(self.schema)
465 if super is None:
466 log.debug(self.schema)
467 raise TypeNotFound(self.ref)
468 if not super.builtin():
469 deps.append(super)
470 midx = 0
471 return (midx, deps)
472
473 def merge(self, other):
474 SchemaObject.merge(self, other)

Callers

nothing calls this directly

Calls 5

executeMethod · 0.95
TypeQueryClass · 0.85
TypeNotFoundClass · 0.85
builtinMethod · 0.45
appendMethod · 0.45

Tested by

no test coverage detected