MCPcopy Create free account
hub / github.com/sqlmapproject/sqlmap / __init__

Method __init__

thirdparty/odict/ordereddict.py:33–40  ·  view source on GitHub ↗
(self, *args, **kwds)

Source from the content-addressed store, hash-verified

31class OrderedDict(dict, DictMixin):
32
33 def __init__(self, *args, **kwds):
34 if len(args) > 1:
35 raise TypeError('expected at most 1 arguments, got %d' % len(args))
36 try:
37 self.__end
38 except AttributeError:
39 self.clear()
40 self.update(*args, **kwds)
41
42 def clear(self):
43 self.__end = end = []

Callers

nothing calls this directly

Calls 2

clearMethod · 0.95
updateMethod · 0.45

Tested by

no test coverage detected