FileIO.hx 343 B

1234567891011121314151617181920
  1. package python.lib.io;
  2. import python.lib.io.RawIOBase;
  3. @:pythonImport("io", "FileIO")
  4. extern class FileIO extends RawIOBase {
  5. /**
  6. The mode as given in the constructor.
  7. **/
  8. public var mode:String;
  9. /**
  10. The file name. This is the file descriptor of the file when no name is given in the constructor.
  11. **/
  12. public var name:String;
  13. }