summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorMartin v. Löwis <martin@v.loewis.de>2006-05-04 10:08:42 (GMT)
committerMartin v. Löwis <martin@v.loewis.de>2006-05-04 10:08:42 (GMT)
commit8e0d494e416a5d143e01b3d05b47d832aae0dadf (patch)
treededb2767bcbd46156ea424fc348348825f00ed6f /Misc
parent777367103c9ab487fb74ce3f3ac8ea2701de328e (diff)
downloadcpython-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/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 8c758b0..444b335 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -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.