Skip to content

Commit a142428

Browse files
committed
fix style
1 parent 8546218 commit a142428

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

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

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

0 commit comments

Comments
 (0)