MCPcopy Index your code
hub / github.com/pathwaycom/pathway / input_operators

Method input_operators

python/pathway/internals/operator.py:166–171  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

164 self.error_log = error_log
165
166 def input_operators(self) -> StableSet[Operator]:
167 result: StableSet[Operator] = StableSet()
168 for handle in self.inputs:
169 for dependency in handle.dependencies:
170 result.add(dependency)
171 return result
172
173 def hard_table_dependencies(self) -> StableSet[tables.Table]:
174 return StableSet()

Callers 2

relevant_nodesMethod · 0.80
_serialize_graphFunction · 0.80

Calls 2

addMethod · 0.95
StableSetClass · 0.90

Tested by

no test coverage detected