(self)
| 8 | class My_Class: |
| 9 | |
| 10 | def __init__(self): |
| 11 | self.digits = [1, 2] |
| 12 | self.letters = ['x', 'y'] |
| 13 | |
| 14 | def custom_copy(self): |
| 15 | """ Copies 'digits' but shares 'letters'. """ |
nothing calls this directly
no outgoing calls
no test coverage detected