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 serhiy.storchaka
Recipients W00D00, doerwalter, georg.brandl, r.david.murray, serhiy.storchaka
Date 2012-04-27.19:00:45
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1335553246.35.0.177836456992.issue7185@psf.upfronthosting.co.za>
In-reply-to
Content
I checked out. Files opened in "utf-8-sig" are seekable.

>>> open('test', 'w', encoding='utf-8-sig').write('qwerty\nйцукен\n')
>>> open('test', 'r', encoding="utf-8").read()
'\ufeffqwerty\nйцукен\n'
>>> open('test', 'r', encoding="utf-8-sig").read()
'qwerty\nйцукен\n'
>>> with open('test', 'r', encoding="utf-8-sig") as f:
...     print(ascii(f.readline()))
...     f.seek(0)
...     print(ascii(f.readline()))
... 
'qwerty\n'
0
'qwerty\n'


Should this issue be closed?
History
Date User Action Args
2012-04-27 19:00:46serhiy.storchakasetrecipients: + serhiy.storchaka, doerwalter, georg.brandl, r.david.murray, W00D00
2012-04-27 19:00:46serhiy.storchakasetmessageid: <1335553246.35.0.177836456992.issue7185@psf.upfronthosting.co.za>
2012-04-27 19:00:45serhiy.storchakalinkissue7185 messages
2012-04-27 19:00:45serhiy.storchakacreate