diff options
author | Gregory P. Smith <greg@krypto.org> | 2012-06-03 21:36:01 (GMT) |
---|---|---|
committer | Gregory P. Smith <greg@krypto.org> | 2012-06-03 21:36:01 (GMT) |
commit | 61ed804cd747d680606efb59dc2c81559a5b0c33 (patch) | |
tree | 7f7f4b4588620cf94f3ec46869c70f04ac2884b4 /Misc | |
parent | a81c8564365d4485bcf1d413b92fb275c091831d (diff) | |
download | cpython-61ed804cd747d680606efb59dc2c81559a5b0c33.zip cpython-61ed804cd747d680606efb59dc2c81559a5b0c33.tar.gz cpython-61ed804cd747d680606efb59dc2c81559a5b0c33.tar.bz2 |
Move the 14992 note to the correct section.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -10,11 +10,6 @@ What's New in Python 3.2.4 Core and Builtins ----------------- -- Issue #14992: os.makedirs(path, exist_ok=True) would raise an OSError - when the path existed and had the S_ISGID mode bit set when it was - not explicitly asked for. This is no longer an exception as mkdir - cannot control if the OS sets that bit for it or not. - - Issue #14775: Fix a potential quadratic dict build-up due to the garbage collector repeatedly trying to untrack dicts. @@ -75,6 +70,11 @@ Core and Builtins Library ------- +- Issue #14992: os.makedirs(path, exist_ok=True) would raise an OSError + when the path existed and had the S_ISGID mode bit set when it was + not explicitly asked for. This is no longer an exception as mkdir + cannot control if the OS sets that bit for it or not. + - Issue #14962: Update text coloring in IDLE shell window after changing options. Patch by Roger Serwy. |