rdobuilder aa200f
From e88a14f86390b22ee55a810d0cd1b68c32c54423 Mon Sep 17 00:00:00 2001
rdobuilder aa200f
From: Tomas Hrnciar <thrnciar@redhat.com>
rdobuilder aa200f
Date: Wed, 16 Jun 2021 13:29:20 +0200
rdobuilder aa200f
Subject: [PATCH] import MutableMapping from collections.abc
rdobuilder aa200f
rdobuilder aa200f
---
rdobuilder aa200f
 dns/namedict.py | 4 ++--
rdobuilder aa200f
 1 file changed, 2 insertions(+), 2 deletions(-)
rdobuilder aa200f
rdobuilder aa200f
diff --git a/dnspython-1.16.0/dns/namedict.py b/dnspython-1.16.0/dns/namedict.py
rdobuilder aa200f
index 37a1310..ae8d6a4 100644
rdobuilder aa200f
--- a/dns/namedict.py
rdobuilder aa200f
+++ b/dns/namedict.py
rdobuilder aa200f
@@ -27,12 +27,12 @@
rdobuilder aa200f
 
rdobuilder aa200f
 """DNS name dictionary"""
rdobuilder aa200f
 
rdobuilder aa200f
-import collections
rdobuilder aa200f
+from collections.abc import MutableMapping
rdobuilder aa200f
 import dns.name
rdobuilder aa200f
 from ._compat import xrange
rdobuilder aa200f
 
rdobuilder aa200f
 
rdobuilder aa200f
-class NameDict(collections.MutableMapping):
rdobuilder aa200f
+class NameDict(MutableMapping):
rdobuilder aa200f
     """A dictionary whose keys are dns.name.Name objects.
rdobuilder aa200f
 
rdobuilder aa200f
     In addition to being like a regular Python dictionary, this
rdobuilder aa200f
-- 
rdobuilder aa200f
2.31.1
rdobuilder aa200f