Merge pull request #411 from wellton/patch-3

Support to Python 3.10
Esse commit está contido em:
David Mohammed
2022-04-04 22:56:37 +01:00
commit de GitHub
+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)