diff options
Diffstat (limited to 'Misc/NEWS')
-rw-r--r-- | Misc/NEWS | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -73,7 +73,7 @@ C API - Because Python's magic number scheme broke on January 1st, we decided to stop Python development. Thanks for all the fish! -- Some of us don't like fish, so we changed Python's magic number +- Some of us don't like fish, so we changed Python's magic number scheme to a new one. See Python/import.c for details. New platforms @@ -84,6 +84,10 @@ Tests Windows +- file.truncate([newsize]) now works on Windows for all newsize values. + It used to fail if newsize didn't fit in 32 bits, reflecting a + limitation of MS _chsize (which is no longer used). + - os.waitpid() is now implemented for Windows, and can be used to block until a specified process exits. This is similar to, but not exactly the same as, os.waitpid() on POSIX systems. If you're waiting for |