summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorBrett Cannon <brett@python.org>2012-02-17 14:26:53 (GMT)
committerBrett Cannon <brett@python.org>2012-02-17 14:26:53 (GMT)
commitba17fe256eefa958dcdc912dc01dbad3b5e843e2 (patch)
tree14828fd9b0eac7df8f2fd454bf020d7ee48aac48 /Misc
parent4fcad3c7ab551110bce65fdac3b8e914dff1aa5c (diff)
downloadcpython-ba17fe256eefa958dcdc912dc01dbad3b5e843e2.zip
cpython-ba17fe256eefa958dcdc912dc01dbad3b5e843e2.tar.gz
cpython-ba17fe256eefa958dcdc912dc01dbad3b5e843e2.tar.bz2
Have importlib use os.replace() for atomic renaming.
Closes issue #13961. Thanks to Charles-François Natali for the patch.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index b2cf410..07ecfc1 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -466,6 +466,8 @@ Core and Builtins
Library
-------
+- Issue #13961: Move importlib over to using os.replace() for atomic renaming.
+
- Do away with ambiguous level values (as suggested by PEP 328) in
importlib.__import__() by raising ValueError when level < 0.