Support to Python 3.10

Coverart broken in python 3.10. Its is a fix.
Esse commit está contido em:
2022-04-04 21:43:46 +00:00
commit de GitHub
commit f9daf039ad
+1 -1
Ver Arquivo
@@ -765,7 +765,7 @@ unicode vs string issues
'''
class CaseInsensitiveDict(collections.Mapping):
class CaseInsensitiveDict(collections.abc.Mapping):
def __init__(self, d):
self._d = d
self._s = dict((RB.search_fold(k), k) for k in d)