bpo-30892: Fix _elementtree module initialization (#2647)

Handle getattr(copy, 'deepcopy') error in _elementtree module
initialization.
diff --git a/Modules/_elementtree.c b/Modules/_elementtree.c
index eaa9e87..3537f19 100644
--- a/Modules/_elementtree.c
+++ b/Modules/_elementtree.c
@@ -3990,6 +3990,11 @@
     st->deepcopy_obj = PyObject_GetAttrString(temp, "deepcopy");
     Py_XDECREF(temp);
 
+    if (st->deepcopy_obj == NULL) {
+        return NULL;
+    }
+
+    assert(!PyErr_Occurred());
     if (!(st->elementpath_obj = PyImport_ImportModule("xml.etree.ElementPath")))
         return NULL;