Commit ab3bc69f authored by Stefan Behnel's avatar Stefan Behnel

fix reference to utility code that was renamed

parent 818c6f1e
......@@ -7126,7 +7126,7 @@ class SortedDictKeysNode(ExprNode):
else:
# originally used PyMapping_Keys() here, but that may return a tuple
code.globalstate.use_utility_code(UtilityCode.load_cached(
'PyObjectCallMethod', 'ObjectHandling.c'))
'PyObjectCallMethod0', 'ObjectHandling.c'))
keys_cname = code.intern_identifier(StringEncoding.EncodedString("keys"))
code.putln('%s = __Pyx_PyObject_CallMethod0(%s, %s); %s' % (
self.result(), dict_result, keys_cname,
......
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