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 {
1640
1640
@ CompilationFinal private ConditionProfile errorProfile ;
1641
1641
@ CompilationFinal private ConditionProfile overflowProfile ;
1642
1642
1643
- public abstract PTuple execute (Object fd );
1644
-
1645
1643
private CastToIntegerFromIntNode getCastIntNode () {
1646
1644
if (castIntNode == null ) {
1647
1645
CompilerDirectives .transferToInterpreterAndInvalidate ();
@@ -1711,7 +1709,7 @@ PTuple getTerminalSize(PInt fd) {
1711
1709
}
1712
1710
1713
1711
@ Fallback
1714
- PTuple getTerminalSize (Object fd ) {
1712
+ Object getTerminalSize (Object fd ) {
1715
1713
Object value = getCastIntNode ().execute (fd );
1716
1714
if (recursiveNode == null ) {
1717
1715
CompilerDirectives .transferToInterpreterAndInvalidate ();
You can’t perform that action at this time.
0 commit comments