File tree Expand file tree Collapse file tree 4 files changed +4
-16
lines changed Expand file tree Collapse file tree 4 files changed +4
-16
lines changed Original file line number Diff line number Diff line change 11
2- try :
3- from collections .abc import Mapping
4- except ImportError : # Python 2.7
5- from collections .abc import Mapping
2+ from collections .abc import Mapping
63
74
85class Trie (Mapping ):
Original file line number Diff line number Diff line change 11
22from types import ModuleType
33
4- try :
5- from collections .abc import Mapping
6- except ImportError :
7- from collections .abc import Mapping
4+ from collections .abc import Mapping
85
96from six import text_type , PY3
107
Original file line number Diff line number Diff line change 11
22
3- try :
4- from collections .abc import MutableMapping
5- except ImportError : # Python 2.7
6- from collections .abc import MutableMapping
3+ from collections .abc import MutableMapping
74from xml .dom import minidom , Node
85import weakref
96
Original file line number Diff line number Diff line change 1515import re
1616import sys
1717
18- try :
19- from collections .abc import MutableMapping
20- except ImportError :
21- from collections .abc import MutableMapping
18+ from collections .abc import MutableMapping
2219
2320from . import base
2421from ..constants import DataLossWarning
You can’t perform that action at this time.
0 commit comments