Skip to content

Commit 1447341

Browse files
committed
don't use non-frame execute in ListBuiltins
1 parent a8f8e23 commit 1447341

File tree

1 file changed

+1
-1
lines changed
  • graalpython/com.oracle.graal.python/src/com/oracle/graal/python/builtins/objects/list

1 file changed

+1
-1
lines changed

graalpython/com.oracle.graal.python/src/com/oracle/graal/python/builtins/objects/list/ListBuiltins.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -921,7 +921,7 @@ Object defaultSort(VirtualFrame frame, PList list, Object[] arguments, PKeyword[
921921
@Cached CallNode callSort,
922922
@SuppressWarnings("unused") @Cached SequenceStorageNodes.LenNode lenNode) {
923923
Object sortMethod = sort.executeObject(frame, list);
924-
callSort.execute(sortMethod, arguments, keywords);
924+
callSort.execute(frame, sortMethod, arguments, keywords);
925925
return PNone.NONE;
926926
}
927927

0 commit comments

Comments
 (0)