Warn when deleting deprecated attributes.
diff --git a/src/cryptography/utils.py b/src/cryptography/utils.py
index da7df76..64a1c78 100644
--- a/src/cryptography/utils.py
+++ b/src/cryptography/utils.py
@@ -120,6 +120,10 @@
         setattr(self._module, attr, value)
 
     def __delattr__(self, attr):
+        obj = getattr(self._module, attr)
+        if isinstance(obj, _DeprecatedValue):
+            warnings.warn(obj.message, obj.warning_class, stacklevel=2)
+
         delattr(self._module, attr)
 
     def __dir__(self):