mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-12-09 22:21:30 +00:00
More DREI stuff
This commit is contained in:
5
thirdparty/odict/ordereddict.py
vendored
5
thirdparty/odict/ordereddict.py
vendored
@@ -23,7 +23,10 @@
|
||||
try:
|
||||
from UserDict import DictMixin
|
||||
except ImportError:
|
||||
from collections import MutableMapping as DictMixin
|
||||
try:
|
||||
from collections.abc import MutableMapping as DictMixin
|
||||
except ImportError:
|
||||
from collections import MutableMapping as DictMixin
|
||||
|
||||
class OrderedDict(dict, DictMixin):
|
||||
|
||||
|
||||
Reference in New Issue
Block a user