commit | 8e0d494e416a5d143e01b3d05b47d832aae0dadf | [log] [tgz] |
---|---|---|
author | Martin v. Löwis <martin@v.loewis.de> | Thu May 04 10:08:42 2006 +0000 |
committer | Martin v. Löwis <martin@v.loewis.de> | Thu May 04 10:08:42 2006 +0000 |
tree | dedb2767bcbd46156ea424fc348348825f00ed6f | |
parent | 777367103c9ab487fb74ce3f3ac8ea2701de328e [diff] [blame] |
Implement os.{chdir,rename,rmdir,remove} using Win32 directly.
diff --git a/Misc/NEWS b/Misc/NEWS index 8c758b0..444b335 100644 --- a/Misc/NEWS +++ b/Misc/NEWS
@@ -67,6 +67,9 @@ Extension Modules ----------------- +- Use Win32 API to implement os.{chdir,rename,rmdir,remove}. As a result, + these functions now raise WindowsError instead of OSError. + - Calling Tk_Init twice is refused if the first call failed as that may deadlock.