Skip to content

Commit 4c47901

Browse files
committed
we have basic subprocess now, we can pretend we have a console
1 parent 9a61b6d commit 4c47901

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

graalpython/com.oracle.graal.python/src/com/oracle/graal/python/builtins/modules/PosixModuleBuiltins.java

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1032,12 +1032,7 @@ boolean isATTY(int fd) {
10321032
case 0:
10331033
case 1:
10341034
case 2:
1035-
// TODO: XXX: actually check
1036-
// TODO: We can only return true here once we
1037-
// have at least basic subprocess module support,
1038-
// because otherwise we break the REPL help
1039-
// return consoleCheck();
1040-
return false;
1035+
return consoleCheck();
10411036
default:
10421037
return false;
10431038
}

0 commit comments

Comments
 (0)