Tempfile.hx 187 B

1234567891011
  1. package python.lib;
  2. extern class Tempfile {
  3. public static function gettempdir():String;
  4. static function __init__ ():Void {
  5. Syntax.importAs("tempfile", "python.lib.Tempfile");
  6. }
  7. }