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 christian.heimes
Recipients christian.heimes, gvanrossum, nnorwitz
Date 2007-10-26.04:44:54
SpamBayes Score 0.40643498
Marked as misclassified No
Message-id <472170C1.4060301@cheimes.de>
In-reply-to <1193372031.11.0.667861675633.issue1330@psf.upfronthosting.co.za>
Content
> While I like fixing the position restore in _fileio.c, I also liked
> Amaury's flush() call in _BufferedIOMixin.  Perhaps you can keep that
> part (while losing the position restore)?

Good point. We have to call flush() in _BufferedIOMixin as you said. I
checked if I could add a flush call to _fileio but it makes no sense. We
are working on file descriptors which means we don't have to use
fflush() and FileIO's flush() is a NOOP.
Files
File name Uploaded
py3k_win_io2.patch christian.heimes, 2007-10-26.04:44:54
History
Date User Action Args
2007-10-26 04:44:56christian.heimessetspambayes_score: 0.406435 -> 0.40643498
recipients: + christian.heimes, gvanrossum, nnorwitz
2007-10-26 04:44:55christian.heimeslinkissue1330 messages
2007-10-26 04:44:54christian.heimescreate