You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: graalpython/com.oracle.graal.python/src/com/oracle/graal/python/builtins/objects/cext/capi/DynamicObjectNativeWrapper.java
+15-7Lines changed: 15 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -2137,14 +2137,22 @@ int identityHashCode() {
2137
2137
@ExportMessage
2138
2138
TriStateisIdenticalOrUndefined(Objectobj) {
2139
2139
if (objinstanceofPrimitiveNativeWrapper) {
2140
-
// This basically emulates singletons for boxed values. However, we need to do
2141
-
// so to
2142
-
// preserve the invariant that storing an object into a list and getting it out
2143
-
// (in
2144
-
// the same critical region) returns the same object.
2140
+
/*
2141
+
* This basically emulates singletons for boxed values. However, we need to do so to
2142
+
* preserve the invariant that storing an object into a list and getting it out (in
2143
+
* the same critical region) returns the same object.
0 commit comments