diff options
author | Tim Peters <tim.peters@gmail.com> | 2006-05-25 21:50:17 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2006-05-25 21:50:17 (GMT) |
commit | 7a822dabadcc79acacc2e9cb02ada7cd4879371b (patch) | |
tree | e114cdca32ce0ba59a613c6236fe2aa9db15a108 /Misc | |
parent | 36850456caa30eba02d440c7c36ccdd510625767 (diff) | |
download | cpython-7a822dabadcc79acacc2e9cb02ada7cd4879371b.zip cpython-7a822dabadcc79acacc2e9cb02ada7cd4879371b.tar.gz cpython-7a822dabadcc79acacc2e9cb02ada7cd4879371b.tar.bz2 |
Some Win64 pre-release in 2000 didn't support
QueryPerformanceCounter(), but we believe Win64 does
support it now. So use in time.clock().
It would be peachy if someone with a Win64 box tried
this ;-)
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -64,6 +64,10 @@ Extension Modules - Use Win32 API to implement os.{access,chdir,chmod,mkdir,remove,rename,rmdir,utime}. As a result, these functions now raise WindowsError instead of OSError. +- ``time.clock()`` on Win64 should use the high-performance Windows + ``QueryPerformanceCounter()`` now (as was already the case on 32-bit + Windows platforms). + - Calling Tk_Init twice is refused if the first call failed as that may deadlock. |