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 semanticist
Recipients semanticist
Date 2008-12-24.08:15:31
SpamBayes Score 5.21219e-05
Marked as misclassified No
Message-id <1230106535.65.0.877178060081.issue4736@psf.upfronthosting.co.za>
In-reply-to
Content
The closed property of BufferedRWPair attempts to call the closed property 
of its writer as a method, which fails because writer.closed is a bool.

The following code demonstrates the error:

import socket
socket.socket().makefile('rwb').closed
History
Date User Action Args
2008-12-24 08:15:36semanticistsetrecipients: + semanticist
2008-12-24 08:15:35semanticistsetmessageid: <1230106535.65.0.877178060081.issue4736@psf.upfronthosting.co.za>
2008-12-24 08:15:33semanticistlinkissue4736 messages
2008-12-24 08:15:32semanticistcreate