The original ANSI / ISO C standards required a seek operation when switching a read-write mode stream from read mode to write mode, and vice versa. This restriction persists, e.g., n1570 includes this text:
When a file is opened with update mode ('+'
as the second or third character in the above list of mode argument values), both input and output may be performed on the associated stream. However, output shall not be directly followed by input without an intervening call to the fflush
function or to a file positioning function (fseek
, fsetpos
, or rewind
), and input shall not be directly followed by output without an intervening call to a file positioning function, unless the input operation encounters end-of-file. Opening (or creating) a text file with update mode may instead open (or create) a binary stream in some implementations.
For whatever reason this restriction has been imported into Python,1 even though it would be possible for the Python wrappers to handle it automatically.
For what it's worth, the reason for the original ANSI C restriction was the low-budget implementation found on many Unix-based systems: they kept, for each stream, a "current byte count" and "current pointer". The current byte count was 0 if the macro-ized getc
and putc
operations had to call into underlying implementation, which could check whether a stream was opened in update mode and switch it as needed. But once you successfully obtained a character, the counter would hold the number of characters that could continue to be read from the underlying stream; and once you successfully wrote a character, the counter would hold the number of buffer-locations that allowed adding characters.
This meant that if you did a successful getc
that filled an internal buffer, but followed it by a putc
, the "written" character from putc
would simply overwrite the buffered data. If you had a successful putc
but followed with a poorly-implemented getc
, you would see un-set value out of the buffer.
This problem was trivial to fix (just provide separate input and output counters, one of which is always zero, and have the functions that implement buffer-refill check for mode-switch as well).
1Citation needed :-)
r+b
mode. It may well not work with anya
mode. Your code sample at the top usesr+b
and stream bound tof
, but your interactive example uses a stream bound ton
, so I wonder if mayben
is opened differently. Or, if not, I note that yourn.read(1)
is not followed by a seek operation (the intermediate seek requirement is annoying, but is standard). – Cohenn = open("test.text", "r+b")
. Intermediate seek requirement? – Privettseek
(even just a relative seek of 0 bytes for instance). There are a few exceptions, including "write allowed without seek if read just returned EOF", but it's easier just to always-seek. – Cohen