blob: ad6fa929e5e2b5a508d1c431455624048efb524e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
diff --git a/dns/namedict.py b/dns/namedict.py
index 37a1310..7d52668 100644
--- a/dns/namedict.py
+++ b/dns/namedict.py
@@ -32,7 +32,7 @@ import dns.name
from ._compat import xrange
-class NameDict(collections.MutableMapping):
+class NameDict(collections.abc.MutableMapping):
"""A dictionary whose keys are dns.name.Name objects.
In addition to being like a regular Python dictionary, this
|