MCPcopy Create free account
hub / github.com/bslatkin/effectivepython / __init__

Method __init__

example_code/item_066.py:82–83  ·  view source on GitHub ↗
(self, *args, **kwargs)

Source from the content-addressed store, hash-verified

80class TraceDict(dict):
81 @trace_func
82 def __init__(self, *args, **kwargs):
83 return super().__init__(*args, **kwargs)
84
85 @trace_func
86 def __setitem__(self, *args, **kwargs):

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected