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, pitrou
Date 2009-04-15.10:45:45
SpamBayes Score 0.012475825
Marked as misclassified No
Message-id <1239792347.2.0.639213233478.issue5761@psf.upfronthosting.co.za>
In-reply-to
Content
>>> f = open("py3k/__svn__/LICENSE")
>>> f
<TextIOWrapper encoding=UTF-8>
>>> f.buffer
<_io.BufferedReader object at 0x7f4b67569f68>
>>> f.buffer.raw
io.FileIO(3, 'rb')
>>> f.name
'py3k/__svn__/LICENSE'

It would probably be nice if f.name were reused for f's repr().
History
Date User Action Args
2009-04-15 10:45:47pitrousetrecipients: + pitrou, benjamin.peterson
2009-04-15 10:45:47pitrousetmessageid: <1239792347.2.0.639213233478.issue5761@psf.upfronthosting.co.za>
2009-04-15 10:45:46pitroulinkissue5761 messages
2009-04-15 10:45:45pitroucreate