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 vstinner
Recipients barry, eric.araujo, eric.smith, exarkun, giampaolo.rodola, loewis, martin.panter, meatballhat, milko.krachounov, ncoghlan, neologix, olemis, pitrou, tarek, vstinner
Date 2013-05-15.23:35:11
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1368660911.98.0.41820968276.issue8604@psf.upfronthosting.co.za>
In-reply-to
Content
+       # Flush Python buffers to system buffers
+       fileobj.flush()
+
+       if hasattr(os, 'fsync'):
+           # Flush system buffers to disk
+           fd = fileobj.fileno()
+           os.fsync(fd)

A fsync=True paramater may be added if calling os.fsync() is an issue.
History
Date User Action Args
2013-05-15 23:35:12vstinnersetrecipients: + vstinner, loewis, barry, exarkun, ncoghlan, pitrou, eric.smith, giampaolo.rodola, tarek, eric.araujo, olemis, meatballhat, milko.krachounov, neologix, martin.panter
2013-05-15 23:35:11vstinnersetmessageid: <1368660911.98.0.41820968276.issue8604@psf.upfronthosting.co.za>
2013-05-15 23:35:11vstinnerlinkissue8604 messages
2013-05-15 23:35:11vstinnercreate