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

Method __init__

example_code/item_013.py:139–141  ·  view source on GitHub ↗
(self, *args, **kwargs)

Source from the content-addressed store, hash-verified

137
138class MyData:
139 def __init__(self, *args, **kwargs):
140 self.args = args
141 self.kwargs = kwargs
142
143value = MyData(123,
144 first_value,

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected