select() on WinXP

grebekel at gmail.com grebekel at gmail.com
Thu Nov 23 10:38:20 EST 2006


I'm running Python 2.5 on Windows XP. When I try to do this:

[code]
import select
select.select([], [], [])
[/code]

I get this:

[output]
Traceback (most recent call last):
  File "C:/Documents and Settings/Grebekel/Desktop/s.py", line 2, in
<module>
    select.select([],[],[])
error: (10022, 'An invalid argument was supplied')
[/output]

Is there anything I should be aware of to get select() working under
Windows?




More information about the Python-list mailing list