I was testing select on windows xp with python 2.6.1, the code is simple:<br><br><div style="margin-left: 40px;">import sys<br>import select<br><br>def testSelect():<br> r = select.select([sys.stdin], [], [], 5.0)<br> print r<br>
<br>if __name__ == "__main__":<br> try:<br> testSelect()<br> except select.error, e:<br> print e<br> <br></div>While an error raised like this:<br><br>(10093, '\xd3\xa6\xd3\xc3\xb3\xcc\xd0\xf2\xc3\xbb\xd3\xd0\xb5\xf7\xd3\xc3 WSAStartup\xa3\xac\xbb\xf2\xd5\xdf WSAStartup')<br>
<br>What is this about?<br><br>Thanks in adv.<br>