ThreadLowLevel.hx 309 B

1234567891011121314151617
  1. package python.lib;
  2. import python.lib.Types.Tuple;
  3. private typedef TODO = Dynamic;
  4. extern class ThreadLowLevel {
  5. public static function start_new_thread(f:Void->Void, args:Tuple<Dynamic>):TODO;
  6. static function __init__ ():Void
  7. {
  8. python.Syntax.importAs("_thread", "python.lib.ThreadLowLevel");
  9. }
  10. }