diff options
author | Tim Peters <tim.peters@gmail.com> | 2003-04-23 02:39:17 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2003-04-23 02:39:17 (GMT) |
commit | 11b230696081e5c91153229616732a707dc9f94d (patch) | |
tree | 01c27dab8709bf147398c842034e4b0a35b8343c /Misc | |
parent | 9a9c436036dbd25d6ae42f67f22ccc5549b3c092 (diff) | |
download | cpython-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/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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(). |