diff options
author | Brett Cannon <brett@python.org> | 2012-02-17 14:26:53 (GMT) |
---|---|---|
committer | Brett Cannon <brett@python.org> | 2012-02-17 14:26:53 (GMT) |
commit | ba17fe256eefa958dcdc912dc01dbad3b5e843e2 (patch) | |
tree | 14828fd9b0eac7df8f2fd454bf020d7ee48aac48 /Misc | |
parent | 4fcad3c7ab551110bce65fdac3b8e914dff1aa5c (diff) | |
download | cpython-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/NEWS | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -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. |