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 Stephen.Tu, amaury.forgeotdarc, pitrou, serhiy.storchaka, vstinner
Date 2013-04-15.20:29:30
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1366057770.5.0.759555096222.issue17671@psf.upfronthosting.co.za>
In-reply-to
Content
About the test:

+        self.assertRaises(Exception, pair.read)
+        self.assertRaises(Exception, pair.write)

First, you should check for the actual RuntimeError.
Second, you need to pass the right arguments for these method calls: for example read(1) and write(b"x"). Otherwise the Exception could correspond to something else.
History
Date User Action Args
2013-04-15 20:29:30pitrousetrecipients: + pitrou, amaury.forgeotdarc, vstinner, serhiy.storchaka, Stephen.Tu
2013-04-15 20:29:30pitrousetmessageid: <1366057770.5.0.759555096222.issue17671@psf.upfronthosting.co.za>
2013-04-15 20:29:30pitroulinkissue17671 messages
2013-04-15 20:29:30pitroucreate