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 ned.deily
Recipients Ben.thelen, eric.araujo, ned.deily, tarek
Date 2011-09-16.20:43:50
SpamBayes Score 7.13471e-06
Marked as misclassified No
Message-id <1316205831.53.0.703539347776.issue12967@psf.upfronthosting.co.za>
In-reply-to
Content
That won't work in IDLE because IDLE replaces the standard sys.stdout file object with a special proxy object to capture stdout across its processes and the proxy object does not currently support all of the attributes of a io.TextTIOWrapper object, like errors.

>>> sys.stdout
<idlelib.rpc.RPCProxy object at 0x1282b30>

If that is the only problem, perhaps this issue should be reassigned to IDLE to support errors and any other relevant new attributes.
History
Date User Action Args
2011-09-16 20:43:51ned.deilysetrecipients: + ned.deily, tarek, eric.araujo, Ben.thelen
2011-09-16 20:43:51ned.deilysetmessageid: <1316205831.53.0.703539347776.issue12967@psf.upfronthosting.co.za>
2011-09-16 20:43:50ned.deilylinkissue12967 messages
2011-09-16 20:43:50ned.deilycreate