MCPcopy Create free account
hub / github.com/SplootCode/splootcode / generateTuple

Function generateTuple

python/executor.py:55–58  ·  view source on GitHub ↗
(node)

Source from the content-addressed store, hash-verified

53 return ast.List(els, ast.Load())
54
55def generateTuple(node):
56 els = [generateAstExpression(el) for el in node['childSets']['elements']]
57 els = [el for el in els if el is not None]
58 return ast.Tuple(els, ast.Load())
59
60def generateSet(node):
61 els = [generateAstExpression(el) for el in node['childSets']['elements']]

Callers 1

Calls 1

generateAstExpressionFunction · 0.70

Tested by

no test coverage detected