not buffered ??
I stumbled on this statement while reading mark summerfields programming in python 3 book,
I was going through the section io.StringIO class.
Is buffer like a cache ??
Any thoughts appreciated
Happy learning
Not a cache, a buffer is an intermediate storage used usually for data transfer for optimization. So that the system can minimize write operations. This would be bad for stderr since delaying error messages is a bad idea.
Обсуждают сегодня