Skip to content

Commit 8546218

Browse files
committed
skip assertion until we have fixed our signal handling to not mess with the gil
1 parent 8815ede commit 8546218

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

graalpython/com.oracle.graal.python/src/com/oracle/graal/python/runtime/ExecutionContext.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,7 @@ public Node copy() {
217217
* Wrap the execution of a Python callee called from a Python frame.
218218
*/
219219
public void enter(VirtualFrame frame) {
220-
assert PythonLanguage.getContext().ownsGil() : PythonContext.dumpStackOnAssertionHelper("callee w/o GIL");
220+
// TODO: assert PythonLanguage.getContext().ownsGil() : PythonContext.dumpStackOnAssertionHelper("callee w/o GIL");
221221
// tfel: Create our frame reference here and store it so that
222222
// there's no reference to it from the caller side.
223223
PFrame.Reference thisFrameRef = new PFrame.Reference(PArguments.getCallerFrameInfo(frame));

0 commit comments

Comments
 (0)