This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author spiv
Recipients barry, dil, ezio.melotti, gz, r.david.murray, spiv
Date 2010-08-09.12:05:38
SpamBayes Score 0.023567362
Marked as misclassified No
Message-id <1281355543.07.0.727433519046.issue9543@psf.upfronthosting.co.za>
In-reply-to
Content
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()
History
Date User Action Args
2010-08-09 12:05:45spivsetrecipients: + spiv, barry, ezio.melotti, r.david.murray, gz, dil
2010-08-09 12:05:43spivsetmessageid: <1281355543.07.0.727433519046.issue9543@psf.upfronthosting.co.za>
2010-08-09 12:05:41spivlinkissue9543 messages
2010-08-09 12:05:38spivcreate