diff options
author | Richard Oudkerk <shibturn@gmail.com> | 2012-06-06 18:04:57 (GMT) |
---|---|---|
committer | Richard Oudkerk <shibturn@gmail.com> | 2012-06-06 18:04:57 (GMT) |
commit | e41682b9945091c2e4b95a3f6a4582944fd7598e (patch) | |
tree | 00cc5480b7e07b0677ae22141f99be675945aaaa /Misc | |
parent | a3a164a03c78d66539f4fe9abf8d1dd5c08babaa (diff) | |
download | cpython-e41682b9945091c2e4b95a3f6a4582944fd7598e.zip cpython-e41682b9945091c2e4b95a3f6a4582944fd7598e.tar.gz cpython-e41682b9945091c2e4b95a3f6a4582944fd7598e.tar.bz2 |
Issue #12157: pool.map() does not handle empty iterable correctly
Initial patch by mouad
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -70,6 +70,9 @@ Core and Builtins Library ------- +- Issue #12157: Make pool.map() empty iterables correctly. Initial + patch by mouad. + - 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 |