diff options
author | Benjamin Peterson <benjamin@python.org> | 2014-06-07 22:08:04 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2014-06-07 22:08:04 (GMT) |
commit | 3c2dca67ac9cdc26fb02473e05723486ffc8d52b (patch) | |
tree | ced412c7a55dc74fd737020c8d101507e52a9da4 /Misc | |
parent | 4bb09c843240afd0c3f3d502f411c01e585ad08d (diff) | |
download | cpython-3c2dca67ac9cdc26fb02473e05723486ffc8d52b.zip cpython-3c2dca67ac9cdc26fb02473e05723486ffc8d52b.tar.gz cpython-3c2dca67ac9cdc26fb02473e05723486ffc8d52b.tar.bz2 |
in ftp cache pruning, avoid changing the size of a dict while iterating over it (closes #21463)
Patch by Skyler Leigh Amador.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/ACKS | 1 | ||||
-rw-r--r-- | Misc/NEWS | 2 |
2 files changed, 3 insertions, 0 deletions
@@ -32,6 +32,7 @@ Fred Allen Ray Allen Billy G. Allie Kevin Altis +Skyler Leigh Amador Joe Amenta A. Amoroso Mark Anacker @@ -22,6 +22,8 @@ Core and Builtins Library ------- +- Issue #21463: In urllib.request, fix pruning of the FTP cache. + - Issue #21618: The subprocess module could fail to close open fds that were inherited by the calling process and already higher than POSIX resource limits would otherwise allow. On systems with a functioning /proc/self/fd |