FileOutput.hx 165 B

1234567891011
  1. package sys.io;
  2. import python.lib.io.RawIOBase;
  3. class FileOutput extends python.io.NativeOutput {
  4. public function new (stream:RawIOBase) {
  5. super(stream);
  6. }
  7. }