I wrote a stream in a file in text mode.
# python code
f = open(\"somewhere in my computer\",\"w\")
f.write(\"Hello\\nWorld\")
f.write(chr(26)) # writing asc
The problem is because of the windows. 0x1A is Ctrl-Z, and DOS used that as an end-of-file marker. Python uses the Windows CRT function _wfopen, which implements the "Ctrl-Z is EOF" semantics. If your file wasn't an exact multiple of 128 bytes, you needed a way to mark the end of the text. This article implies that the selection of Ctrl-Z was based on an even older convention used by DEC.