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

Method __init__

example_code/item_053.py:72–75  ·  view source on GitHub ↗
(self, value)

Source from the content-addressed store, hash-verified

70print("Example 3")
71class OneWay(MyBaseClass, TimesTwo, PlusFive):
72 def __init__(self, value):
73 MyBaseClass.__init__(self, value)
74 TimesTwo.__init__(self)
75 PlusFive.__init__(self)
76
77
78print("Example 4")

Callers 11

__init__Method · 0.45
__init__Method · 0.45
__init__Method · 0.45
__init__Method · 0.45
__init__Method · 0.45
__init__Method · 0.45
__init__Method · 0.45
__init__Method · 0.45
__init__Method · 0.45
__init__Method · 0.45
__init__Method · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected