diff options
author | Gordon P. Hemsley <me@gphemsley.org> | 2019-09-10 15:22:01 (GMT) |
---|---|---|
committer | Stefan Behnel <stefan_ml@behnel.de> | 2019-09-10 15:22:01 (GMT) |
commit | 7d952ded6813c896ea3f4234bb8db5247dcb5484 (patch) | |
tree | 15472d3858af207919e4893b1335d99d08974616 /Misc | |
parent | a9b6033179b64b985394ad351501089a6a94fc9d (diff) | |
download | cpython-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.rst | 3 |
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 |