mirror of
https://github.com/python/cpython.git
synced 2026-01-29 06:06:01 +00:00
xml.etree: Remove the ElementTree.Element.copy() method of the pure Python implementation, deprecated in Python 3.10, use the copy.copy() function instead. The C implementation of xml.etree has no copy() method, only a __copy__() method.