BufferedIOBase.hx 277 B

1234567891011121314
  1. package python.lib.io;
  2. import python.lib.io.RawIOBase;
  3. import python.lib.Bytearray;
  4. extern class BufferedIOBase extends IOBase {
  5. /* not always available */
  6. public var raw:RawIOBase;
  7. public function write (b:Bytearray):Int;
  8. public function readinto (b:Bytearray):Int;
  9. }