File tree Expand file tree Collapse file tree 1 file changed +1
-3
lines changed
graalpython/com.oracle.graal.python/src/com/oracle/graal/python/builtins/modules Expand file tree Collapse file tree 1 file changed +1
-3
lines changed Original file line number Diff line number Diff line change @@ -1640,8 +1640,6 @@ abstract static class GetTerminalSizeNode extends PythonUnaryBuiltinNode {
16401640 @ CompilationFinal private ConditionProfile errorProfile ;
16411641 @ CompilationFinal private ConditionProfile overflowProfile ;
16421642
1643- public abstract PTuple execute (Object fd );
1644-
16451643 private CastToIntegerFromIntNode getCastIntNode () {
16461644 if (castIntNode == null ) {
16471645 CompilerDirectives .transferToInterpreterAndInvalidate ();
@@ -1711,7 +1709,7 @@ PTuple getTerminalSize(PInt fd) {
17111709 }
17121710
17131711 @ Fallback
1714- PTuple getTerminalSize (Object fd ) {
1712+ Object getTerminalSize (Object fd ) {
17151713 Object value = getCastIntNode ().execute (fd );
17161714 if (recursiveNode == null ) {
17171715 CompilerDirectives .transferToInterpreterAndInvalidate ();
You can’t perform that action at this time.
0 commit comments