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 d5ef994 commit 9843654Copy full SHA for 9843654
graalpython/com.oracle.graal.python/src/com/oracle/graal/python/builtins/modules/BuiltinFunctions.java
@@ -396,13 +396,13 @@ public String doPI(PInt x) {
396
@Specialization
397
public String doO(Object x,
398
@Cached("create()") CastToIntegerFromIndexNode toIntNode,
399
- @Cached("create()") OctNode recursiveNode) {
+ @Cached("create()") HexNode recursiveNode) {
400
Object value = toIntNode.execute(x);
401
return recursiveNode.executeObject(value);
402
}
403
404
- protected static OctNode create() {
405
- return BuiltinFunctionsFactory.OctNodeFactory.create();
+ protected static HexNode create() {
+ return BuiltinFunctionsFactory.HexNodeFactory.create();
406
407
408
0 commit comments