Browse Source

add dummy FileInput.eof so sys tests compile

Simon Krajewski 11 năm trước cách đây
mục cha
commit
b3673db9b1
1 tập tin đã thay đổi với 3 bổ sung1 xóa
  1. 3 1
      std/python/_std/sys/io/FileInput.hx

+ 3 - 1
std/python/_std/sys/io/FileInput.hx

@@ -9,6 +9,8 @@ class FileInput extends NativeInput {
 		super(stream);
 	}
 
-
+	public function eof() {
+		return false; // TODO
+	}
 
 }