[Python-checkins] python/dist/src/Misc NEWS,1.337.2.4.2.73,1.337.2.4.2.74
tim_one@users.sourceforge.net
tim_one@users.sourceforge.net
Wed, 23 Apr 2003 13:14:45 -0700
Update of /cvsroot/python/python/dist/src/Misc
In directory sc8-pr-cvs1:/tmp/cvs-serv14722/Misc
Modified Files:
Tag: release22-maint
NEWS
Log Message:
fsync(): Implemented for Windows, via calling MS _commit. This counts
as "a bug" because there's no other way in core Python to ensure that
bytes written are actually on disk. At least ZODB wants this guarantee,
for robustness against crashes.
Index: NEWS
===================================================================
RCS file: /cvsroot/python/python/dist/src/Misc/NEWS,v
retrieving revision 1.337.2.4.2.73
retrieving revision 1.337.2.4.2.74
diff -C2 -d -r1.337.2.4.2.73 -r1.337.2.4.2.74
*** NEWS 11 Apr 2003 18:21:03 -0000 1.337.2.4.2.73
--- NEWS 23 Apr 2003 20:14:07 -0000 1.337.2.4.2.74
***************
*** 3,6 ****
--- 3,10 ----
============================
+ - Implemented os.fsync() for Windows, where it calls the MS _commit()
+ function. Before, there was no way in core Python to ensure file
+ writes actually showed up on disk when necessary.
+
- Make all the strip, lstrip, rstrip functions/methods on
string/unicode/UserString consistent by adding and/or