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 b225cb6 commit 570119aCopy full SHA for 570119a
graalpython/com.oracle.graal.python/src/com/oracle/graal/python/builtins/objects/ints/PInt.java
@@ -218,8 +218,8 @@ public Object asIndexWithState(@SuppressWarnings("unused") ThreadState threadSta
218
219
@ExportMessage
220
public int asFileDescriptor(
221
- @Cached PRaiseNode raiseNode,
222
- @Cached.Exclusive @Cached CastToJavaIntNode castToJavaIntNode) {
+ @Exclusive @Cached PRaiseNode raiseNode,
+ @Exclusive @Cached CastToJavaIntNode castToJavaIntNode) {
223
try {
224
return castToJavaIntNode.execute(this);
225
} catch (PException e) {
0 commit comments