(self)
| 21 | def count(self): |
| 22 | return self.tail - self.head |
| 23 | def print(self): |
| 24 | print(self.data) |
| 25 | print("**************") |
| 26 | print(self.data[self.head:self.tail]) |
| 27 | |
| 28 | class my_node: |
| 29 | def __init__(self,data): |
nothing calls this directly
no outgoing calls
no test coverage detected