diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2006-05-04 10:08:42 (GMT) |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2006-05-04 10:08:42 (GMT) |
commit | 8e0d494e416a5d143e01b3d05b47d832aae0dadf (patch) | |
tree | dedb2767bcbd46156ea424fc348348825f00ed6f /Misc | |
parent | 777367103c9ab487fb74ce3f3ac8ea2701de328e (diff) | |
download | cpython-8e0d494e416a5d143e01b3d05b47d832aae0dadf.zip cpython-8e0d494e416a5d143e01b3d05b47d832aae0dadf.tar.gz cpython-8e0d494e416a5d143e01b3d05b47d832aae0dadf.tar.bz2 |
Implement os.{chdir,rename,rmdir,remove} using Win32 directly.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -67,6 +67,9 @@ Core and builtins 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. |