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 dea989d commit cdbc445Copy full SHA for cdbc445
graalpython/com.oracle.graal.python/src/com/oracle/graal/python/builtins/objects/frame/PFrame.java
@@ -225,7 +225,10 @@ public PFrame.Reference getBackref() {
225
}
226
227
public void setBackref(PFrame.Reference backref) {
228
- assert this.backref == null || this.backref == backref : "setBackref tried to set a backref different to the one that was previously attached";
+ // GR-41914
229
+ // @formatter:off
230
+ // assert this.backref == null || this.backref == backref : "setBackref tried to set a backref different to the one that was previously attached";
231
+ // @formatter:on
232
this.backref = backref;
233
234
0 commit comments