summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2011-01-06 18:25:55 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2011-01-06 18:25:55 (GMT)
commite85da7aa4f575e9925afafdb332b17e085c4aea1 (patch)
tree651ce4291e462d432d921dc2d94521519b3f68bd /Misc
parentb715fac819fadf56dc8ae0a7769e20ec053baa6d (diff)
downloadcpython-e85da7aa4f575e9925afafdb332b17e085c4aea1.zip
cpython-e85da7aa4f575e9925afafdb332b17e085c4aea1.tar.gz
cpython-e85da7aa4f575e9925afafdb332b17e085c4aea1.tar.bz2
Issue #7858: Raise an error properly when os.utime() fails under Windows
on an existing file. (this does not seem to be easily testable)
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 bdac346..df42025 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -30,6 +30,9 @@ Core and Builtins
Library
-------
+- Issue #7858: Raise an error properly when os.utime() fails under Windows
+ on an existing file.
+
- Issue #3839: wsgiref should not override a Content-Length header set by
the application. Initial patch by Clovis Fabricio.