diff options
author | Felix C. Stegerman <flx@obfusk.net> | 2021-02-24 02:25:31 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-24 02:25:31 (GMT) |
commit | 1f433406bd46fbd00b88223ad64daea6bc9eaadc (patch) | |
tree | a02810a5aa293f957052638420626fec4f933d4b /Misc | |
parent | b9fe16a02717e89a2141311de1e36161af4de9a9 (diff) | |
download | cpython-1f433406bd46fbd00b88223ad64daea6bc9eaadc.zip cpython-1f433406bd46fbd00b88223ad64daea6bc9eaadc.tar.gz cpython-1f433406bd46fbd00b88223ad64daea6bc9eaadc.tar.bz2 |
bpo-42151: don't set specified_attributes=1 in pure Python ElementTree (GH-22987)
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Library/2020-10-26-18-01-09.bpo-42151.et5f7s.rst | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2020-10-26-18-01-09.bpo-42151.et5f7s.rst b/Misc/NEWS.d/next/Library/2020-10-26-18-01-09.bpo-42151.et5f7s.rst new file mode 100644 index 0000000..6361f2c --- /dev/null +++ b/Misc/NEWS.d/next/Library/2020-10-26-18-01-09.bpo-42151.et5f7s.rst @@ -0,0 +1,3 @@ +Make the pure Python implementation of :mod:`xml.etree.ElementTree` behave +the same as the C implementation (:mod:`_elementree`) regarding default +attribute values (by not setting ``specified_attributes=1``). |