MCPcopy Index your code
hub / github.com/qiwsir/StarterLearningPython / MyCopy

Class MyCopy

2code/22103.py:6–11  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

4import copy
5
6class MyCopy(object):
7 def __init__(self, value):
8 self.value = value
9
10 def __repr__(self):
11 return str(self.value)
12
13foo = MyCopy(7)
14

Callers 1

22103.pyFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected