Commit 329fe5e8 authored by Stefan Behnel's avatar Stefan Behnel

fix type of AsTupleNode to tuple_type

parent 01e1bf59
......@@ -2376,7 +2376,7 @@ class AsTupleNode(ExprNode):
def analyse_types(self, env):
self.arg.analyse_types(env)
self.arg = self.arg.coerce_to_pyobject(env)
self.type = py_object_type
self.type = tuple_type
self.gil_check(env)
self.is_temp = 1
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment