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 brett.cannon, eric.araujo, lemburg, loewis, meatballhat, pitrou, rhettinger, vstinner
Date 2011-05-23.11:59:48
SpamBayes Score 0.017647954
Marked as misclassified No
Message-id <1306151989.63.0.931069980695.issue8796@psf.upfronthosting.co.za>
In-reply-to
Content
If there are use cases of Stream{Reader,Writer} which are not covered by TextIOWrapper, it would be nice to know so that we can improve TextIOWrapper. After all, there should be one obvious way to do it ;)

By the way, something interesting (probably unintended):

>>> codecs.open("LICENSE", "r")
<_io.TextIOWrapper name='LICENSE' mode='r' encoding='UTF-8'>
>>> codecs.open("LICENSE", "r", encoding="utf-8")
<codecs.StreamReaderWriter object at 0x7f71846ac840>
History
Date User Action Args
2011-05-23 11:59:49pitrousetrecipients: + pitrou, lemburg, loewis, brett.cannon, rhettinger, vstinner, eric.araujo, meatballhat
2011-05-23 11:59:49pitrousetmessageid: <1306151989.63.0.931069980695.issue8796@psf.upfronthosting.co.za>
2011-05-23 11:59:49pitroulinkissue8796 messages
2011-05-23 11:59:48pitroucreate