[issue10295] _socket.pyd uses winsock2, select.pyd uses winsock 1

2010-11-03 Thread Kristján Valur Jónsson
Kristján Valur Jónsson added the comment: committed as revision 86136 -- resolution: -> accepted status: open -> closed ___ Python tracker ___ _

[issue10295] _socket.pyd uses winsock2, select.pyd uses winsock 1

2010-11-03 Thread Martin v . Löwis
Martin v. Löwis added the comment: LGTM. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python

[issue10295] _socket.pyd uses winsock2, select.pyd uses winsock 1

2010-11-03 Thread Antoine Pitrou
Changes by Antoine Pitrou : -- nosy: +loewis ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python

[issue10295] _socket.pyd uses winsock2, select.pyd uses winsock 1

2010-11-02 Thread Kristján Valur Jónsson
Kristján Valur Jónsson added the comment: Here is a patch -- keywords: +patch Added file: http://bugs.python.org/file19475/select.patch ___ Python tracker ___ __

[issue10295] _socket.pyd uses winsock2, select.pyd uses winsock 1

2010-11-02 Thread Kristján Valur Jónsson
New submission from Kristján Valur Jónsson : These two socket modules link to a different winsock api, thus pulling two potentially incompatible dlls in to the process. There is no guarantee that they interact. I'll see if there is a simple patch for select module -- components: IO m