]> git.ipfire.org Git - thirdparty/dnspython.git/commitdiff
remove no longer needed backwards compat for collections.abc.MutableMapping
authorBob Halley <halley@dnspython.org>
Fri, 5 Jun 2020 16:46:31 +0000 (09:46 -0700)
committerBob Halley <halley@dnspython.org>
Fri, 5 Jun 2020 16:46:31 +0000 (09:46 -0700)
dns/namedict.py

index ce51e5246fe3297a4586f11f564c8caccdef25e2..4c8f9abdaa8cfca088f8ad51f7bf44dfc1433875 100644 (file)
 
 """DNS name dictionary"""
 
-try:
-    from collections.abc import MutableMapping
-except ImportError:
-    from collections import MutableMapping
+from collections.abc import MutableMapping
+
 import dns.name