summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorGordon P. Hemsley <me@gphemsley.org>2019-09-10 15:22:01 (GMT)
committerStefan Behnel <stefan_ml@behnel.de>2019-09-10 15:22:01 (GMT)
commit7d952ded6813c896ea3f4234bb8db5247dcb5484 (patch)
tree15472d3858af207919e4893b1335d99d08974616 /Misc
parenta9b6033179b64b985394ad351501089a6a94fc9d (diff)
downloadcpython-7d952ded6813c896ea3f4234bb8db5247dcb5484.zip
cpython-7d952ded6813c896ea3f4234bb8db5247dcb5484.tar.gz
cpython-7d952ded6813c896ea3f4234bb8db5247dcb5484.tar.bz2
bpo-32424: Deprecate xml.etree.ElementTree.Element.copy() in favor of copy.copy() (GH-12995)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Library/2019-04-28-10-34-19.bpo-32424.eqNPhM.rst3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2019-04-28-10-34-19.bpo-32424.eqNPhM.rst b/Misc/NEWS.d/next/Library/2019-04-28-10-34-19.bpo-32424.eqNPhM.rst
new file mode 100644
index 0000000..a60d68b
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2019-04-28-10-34-19.bpo-32424.eqNPhM.rst
@@ -0,0 +1,3 @@
+Deprecate xml.etree.ElementTree.Element.copy() in favor of copy.copy().
+
+Patch by Gordon P. Hemsley