We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fa555de commit 6837b15Copy full SHA for 6837b15
py/dml/ctree.py
@@ -2885,9 +2885,10 @@ def __str__(self):
2885
self.node_expr, self.method_name,
2886
'(' + ", ".join(str(e) for e in self.args) + ')')
2887
def read(self):
2888
+ args = [e.read() for e in self.args]
2889
call = "(%s)->%s(%s)" % (
2890
read_iface_struct(self.node_expr), self.method_name,
- ", ".join(e.read() for e in self.args))
2891
+ ", ".join(args))
2892
if not dml.globals.thread_aware:
2893
return call
2894
0 commit comments