diff options
author | 2021-05-14 18:12:21 +0300 | |
---|---|---|
committer | 2021-05-15 13:51:30 +0200 | |
commit | 49c88a839919fbe4837412bb6abf7fae8ce481ec (patch) | |
tree | 37fca5e85fa0efb1466f4578af43cf9314c5c173 /dev-python/dnspython/files | |
parent | dev-python/ecdsa: Bump to python 3.10 (diff) | |
download | gentoo-49c88a839919fbe4837412bb6abf7fae8ce481ec.tar.gz gentoo-49c88a839919fbe4837412bb6abf7fae8ce481ec.tar.bz2 gentoo-49c88a839919fbe4837412bb6abf7fae8ce481ec.zip |
dev-python/dnspython: bump revision of 1.16.0 to r2 for python 3.10
Signed-off-by: Ekaterina Vaartis <vaartis@kotobank.ch>
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-python/dnspython/files')
-rw-r--r-- | dev-python/dnspython/files/dnspython-1.16.0-py310.patch | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/dev-python/dnspython/files/dnspython-1.16.0-py310.patch b/dev-python/dnspython/files/dnspython-1.16.0-py310.patch new file mode 100644 index 000000000000..ad6fa929e5e2 --- /dev/null +++ b/dev-python/dnspython/files/dnspython-1.16.0-py310.patch @@ -0,0 +1,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 |