diff options
author | Thomas Perl <m@thp.io> | 2019-03-28 06:03:25 (GMT) |
---|---|---|
committer | Inada Naoki <songofacandy@gmail.com> | 2019-03-28 06:03:25 (GMT) |
commit | 796cc6e3ad3617c1ea9e528663aac1a206230a28 (patch) | |
tree | 0af419b927af85d970dc7f1c207e04a1744704cd /Misc | |
parent | 738cb42a14481aa9ae58704f6bee951308212d7e (diff) | |
download | cpython-796cc6e3ad3617c1ea9e528663aac1a206230a28.zip cpython-796cc6e3ad3617c1ea9e528663aac1a206230a28.tar.gz cpython-796cc6e3ad3617c1ea9e528663aac1a206230a28.tar.bz2 |
bpo-36452: dictiter: track maximum iteration count (GH-12596)
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Core and Builtins/2019-03-27-23-53-00.bpo-36452.xhK2lT.rst | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2019-03-27-23-53-00.bpo-36452.xhK2lT.rst b/Misc/NEWS.d/next/Core and Builtins/2019-03-27-23-53-00.bpo-36452.xhK2lT.rst new file mode 100644 index 0000000..37c0c50 --- /dev/null +++ b/Misc/NEWS.d/next/Core and Builtins/2019-03-27-23-53-00.bpo-36452.xhK2lT.rst @@ -0,0 +1 @@ +Changing `dict` keys during iteration will now be detected in certain corner cases where the number of keys isn't changed (but they keys themselves are), and a `RuntimeError` will be raised.
\ No newline at end of file |