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 8815ede commit 8546218Copy full SHA for 8546218
graalpython/com.oracle.graal.python/src/com/oracle/graal/python/runtime/ExecutionContext.java
@@ -217,7 +217,7 @@ public Node copy() {
217
* Wrap the execution of a Python callee called from a Python frame.
218
*/
219
public void enter(VirtualFrame frame) {
220
- assert PythonLanguage.getContext().ownsGil() : PythonContext.dumpStackOnAssertionHelper("callee w/o GIL");
+ // TODO: assert PythonLanguage.getContext().ownsGil() : PythonContext.dumpStackOnAssertionHelper("callee w/o GIL");
221
// tfel: Create our frame reference here and store it so that
222
// there's no reference to it from the caller side.
223
PFrame.Reference thisFrameRef = new PFrame.Reference(PArguments.getCallerFrameInfo(frame));
0 commit comments