Browse Source

[python] i get it now :-)

Dan Korostelev 10 years ago
parent
commit
9d9ab4a8a1
1 changed files with 1 additions and 1 deletions
  1. 1 1
      std/python/lib/Select.hx

+ 1 - 1
std/python/lib/Select.hx

@@ -28,5 +28,5 @@ private typedef Selectable = haxe.extern.EitherType<Int,{function fileno():Int;}
 
 @:pythonImport("select")
 extern class Select {
-    static function select(rlist:Array<Selectable>, wlist:Array<Selectable>, xlist:Array<Selectable>, ?timeout:Float):Tuple3<Array<Selectable>,Array<Selectable>,Array<Selectable>>;
+    static function select<T>(rlist:Array<T>, wlist:Array<T>, xlist:Array<T>, ?timeout:Float):Tuple3<Array<T>,Array<T>,Array<T>>;
 }