bpo-36109: Fix random test_descr failure. (GH-12044)

diff --git a/Lib/test/test_descr.py b/Lib/test/test_descr.py
index b38cb76..fc885c5 100644
--- a/Lib/test/test_descr.py
+++ b/Lib/test/test_descr.py
@@ -4325,7 +4325,11 @@
             def __hash__(self):
                 return hash('attr')
             def __eq__(self, other):
-                del C.attr
+                try:
+                    del C.attr
+                except AttributeError:
+                    # possible race condition
+                    pass
                 return 0
 
         class Descr(object):