diff options
author | Matthew Rahtz <matthew.rahtz@gmail.com> | 2022-05-08 13:21:28 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-08 13:21:28 (GMT) |
commit | 4739997e141c4c84bd2241d4d887c3c658d92700 (patch) | |
tree | 1a9b1122fa1e67eef25e799896bb1f1b482a19f4 /Misc | |
parent | 788ef54bc94b0a7aa2a93f626e4067ab8561424c (diff) | |
download | cpython-4739997e141c4c84bd2241d4d887c3c658d92700.zip cpython-4739997e141c4c84bd2241d4d887c3c658d92700.tar.gz cpython-4739997e141c4c84bd2241d4d887c3c658d92700.tar.bz2 |
gh-92261: Disallow iteration of Union (and other special forms) (GH-92262)
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Core and Builtins/2022-05-03-20-12-18.gh-issue-92261.aigLnb.rst | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2022-05-03-20-12-18.gh-issue-92261.aigLnb.rst b/Misc/NEWS.d/next/Core and Builtins/2022-05-03-20-12-18.gh-issue-92261.aigLnb.rst new file mode 100644 index 0000000..df0228e --- /dev/null +++ b/Misc/NEWS.d/next/Core and Builtins/2022-05-03-20-12-18.gh-issue-92261.aigLnb.rst @@ -0,0 +1 @@ +Fix hang when trying to iterate over a ``typing.Union``. |