File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed
graalpython/com.oracle.graal.python/src/com/oracle/graal/python/builtins/modules Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change 4242import com .oracle .graal .python .builtins .objects .tuple .PTuple ;
4343import com .oracle .graal .python .nodes .call .special .LookupAndCallUnaryNode ;
4444import com .oracle .graal .python .nodes .function .PythonBuiltinNode ;
45+ import com .oracle .graal .python .nodes .function .builtins .PythonUnaryBuiltinNode ;
4546import com .oracle .graal .python .nodes .truffle .PythonArithmeticTypes ;
4647import com .oracle .graal .python .runtime .exception .PythonErrorType ;
4748import com .oracle .graal .python .runtime .object .PythonObjectFactory ;
@@ -958,7 +959,7 @@ public abstract static class PowNode extends PythonBuiltinNode {
958959
959960 @ Builtin (name = "trunc" , fixedNumOfArguments = 1 )
960961 @ GenerateNodeFactory
961- public abstract static class TruncNode extends PythonBuiltinNode {
962+ public abstract static class TruncNode extends PythonUnaryBuiltinNode {
962963
963964 @ Specialization
964965 Object trunc (Object obj ,
You can’t perform that action at this time.
0 commit comments