summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorTim Peters <tim.peters@gmail.com>2003-04-23 02:39:17 (GMT)
committerTim Peters <tim.peters@gmail.com>2003-04-23 02:39:17 (GMT)
commit11b230696081e5c91153229616732a707dc9f94d (patch)
tree01c27dab8709bf147398c842034e4b0a35b8343c /Misc
parent9a9c436036dbd25d6ae42f67f22ccc5549b3c092 (diff)
downloadcpython-11b230696081e5c91153229616732a707dc9f94d.zip
cpython-11b230696081e5c91153229616732a707dc9f94d.tar.gz
cpython-11b230696081e5c91153229616732a707dc9f94d.tar.bz2
Enable os.fsync() for Windows, mapping it to MS's _commit() there. The
docs here are best-guess: the MS docs I could find weren't clear, and some even claimed _commit() has no effect on Win32 systems (which is easily shown to be false just by trying it).
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 330831d..496ad0b 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -232,6 +232,9 @@ Tests
Windows
-------
+- os.fsync() now exists on Windows, and calls the Microsoft _commit()
+ function.
+
- New function winsound.MessageBeep() wraps the Win32 API
MessageBeep().