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.
2 parents 85c2ec7 + c9043f1 commit fb00eb7Copy full SHA for fb00eb7
graalpython/com.oracle.graal.python/src/com/oracle/graal/python/builtins/objects/ints/PInt.java
@@ -568,11 +568,6 @@ public long hash() {
568
return hashBigInteger(value);
569
}
570
571
- @ExportMessage
572
- public long hashWithState(@SuppressWarnings("unused") ThreadState state) {
573
- return hash();
574
- }
575
-
576
@TruffleBoundary
577
public static long hashBigInteger(BigInteger i) {
578
long h = i.remainder(BigInteger.valueOf(SysModuleBuiltins.HASH_MODULUS)).longValue();
0 commit comments