Andrew Bennetts <s...@users.sourceforge.net> added the comment:

Chatting with Taggnostr on IRC I've trimmed that reproduction down to something 
much cleaner (no magic numbers or threads involved):

import socket
sock_a, sock_b = socket.socketpair()
sock_a = socket.socket(_sock=sock_a)
sock_b.close()
file_a = sock_a.makefile('w')
file_a.write('x')
file_a.flush()

----------

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue9543>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to