Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/dabeaz-course/python-mastery
/ __init__
Method
__init__
Solutions/2_4/mutint.py:11–12 ·
view source on GitHub ↗
(self, value)
Source
from the content-addressed store, hash-verified
9
__slots__ = [
'value'
]
10
11
def
__init__(self, value):
12
self.value = value
13
14
def
__str__(self):
15
return
str(self.value)
Callers
nothing calls this directly
Calls
no outgoing calls
Tested by
no test coverage detected