FileOutput.hx 166 B

123456789101112
  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. }