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 pitrou
Recipients benjamin.peterson, hynek, pitrou, stutzbach
Date 2012-09-01.19:20:12
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1346527213.21.0.243179396441.issue15842@psf.upfronthosting.co.za>
In-reply-to
Content
>>> import socket
>>> s = socket.socket()
>>> f = s.makefile("rb", buffering=0)
>>> f
<socket.SocketIO object at 0x7f2f323cd790>
>>> f.close()
>>> f.writable()
False
>>> f.readable()
False
History
Date User Action Args
2012-09-01 19:20:13pitrousetrecipients: + pitrou, benjamin.peterson, stutzbach, hynek
2012-09-01 19:20:13pitrousetmessageid: <1346527213.21.0.243179396441.issue15842@psf.upfronthosting.co.za>
2012-09-01 19:20:12pitroulinkissue15842 messages
2012-09-01 19:20:12pitroucreate