Browse Source

[python] remove TODO and use Dynamic for now

frabbit 8 years ago
parent
commit
09061732e3
1 changed files with 1 additions and 3 deletions
  1. 1 3
      std/python/lib/ThreadLowLevel.hx

+ 1 - 3
std/python/lib/ThreadLowLevel.hx

@@ -23,11 +23,9 @@ package python.lib;
 
 
 import python.Tuple;
 import python.Tuple;
 
 
-private typedef TODO = Dynamic;
-
 @:pythonImport("_thread")
 @:pythonImport("_thread")
 extern class ThreadLowLevel {
 extern class ThreadLowLevel {
 
 
-	public static function start_new_thread(f:Void->Void, args:Tuple<Dynamic>):TODO;
+	public static function start_new_thread(f:Void->Void, args:Tuple<Dynamic>):Dynamic;
 
 
 }
 }