Serhiy Storchaka added the comment:

> This still depends on StringIO.tell() corresponding to the number of code 
> points, which is undocumented (we already disable newline translation in the 
> StringIO). See also Issue 25190.

And doesn't work with Python implementation of StringIO. More general solution 
needs the code like:

pos = file.tell()
tail = file.read()
file.seek(0)
head = file.read()
if tail:
    head = head[:-len(tail)]
newfile.write(head)
pos = newfile.tell()  # TextIOWrapper position is opaque
newfile.write(tail)
newfile.seek(pos, 0)

Yet one bad thing with using independent StringIO instead of TextIOWrapper, is 
that saved tell() position becomes not valid after rollover(). I'm going to 
write few tests for cases when file position points not at the end of the 
stream.

----------

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue26730>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to