Skip to content

Commit e44f9f2

Browse files
committed
cleanup
1 parent fb7fe73 commit e44f9f2

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

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

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -957,11 +957,11 @@ protected boolean readOpaque(VirtualFrame frame) {
957957
public abstract static class IsATTYNode extends PythonBuiltinNode {
958958
@Specialization
959959
boolean isATTY(int fd) {
960-
// TODO: XXX: actually check
961960
switch (fd) {
962961
case 0:
963962
case 1:
964963
case 2:
964+
// TODO: XXX: actually check
965965
return consoleCheck();
966966
default:
967967
return false;
@@ -1144,7 +1144,6 @@ PTuple waitpid(int pid, int options) {
11441144
}
11451145
}
11461146

1147-
// FIXME: this is not nearly ready, just good enough for now
11481147
@Builtin(name = "system", fixedNumOfPositionalArgs = 1)
11491148
@GenerateNodeFactory
11501149
@TypeSystemReference(PythonArithmeticTypes.class)

0 commit comments

Comments
 (0)