diff options
author | Alex Prengère <2138730+alexprengere@users.noreply.github.com> | 2021-03-30 21:11:29 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-30 21:11:29 (GMT) |
commit | 51a85ddce8b336addcb61b96f04c9c5edef07296 (patch) | |
tree | 5206be9be09a2523341723e4478c731bee24accb /Misc | |
parent | 73b20ae2fb7a5c1374aa5c3719f64c53d29fa0d2 (diff) | |
download | cpython-51a85ddce8b336addcb61b96f04c9c5edef07296.zip cpython-51a85ddce8b336addcb61b96f04c9c5edef07296.tar.gz cpython-51a85ddce8b336addcb61b96f04c9c5edef07296.tar.bz2 |
bpo-43399: Fix ElementTree.extend not working on iterators (GH-24751)
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/ACKS | 1 | ||||
-rw-r--r-- | Misc/NEWS.d/next/Library/2021-03-04-17-53-46.bpo-43399.Wn95u-.rst | 2 |
2 files changed, 3 insertions, 0 deletions
@@ -1381,6 +1381,7 @@ Matheus Vieira Portela Davin Potts Guillaume Pratte Florian Preinstorfer +Alex Prengère Amrit Prem Paul Prescod Donovan Preston diff --git a/Misc/NEWS.d/next/Library/2021-03-04-17-53-46.bpo-43399.Wn95u-.rst b/Misc/NEWS.d/next/Library/2021-03-04-17-53-46.bpo-43399.Wn95u-.rst new file mode 100644 index 0000000..0b8dffb --- /dev/null +++ b/Misc/NEWS.d/next/Library/2021-03-04-17-53-46.bpo-43399.Wn95u-.rst @@ -0,0 +1,2 @@ +Fix ``ElementTree.extend`` not working on iterators when using the +Python implementation |