(self, string="")
| 360 | A faster and better solution is to rewrite your program using lists.""" |
| 361 | |
| 362 | def __init__(self, string=""): |
| 363 | self.data = string |
| 364 | |
| 365 | def __hash__(self): |
| 366 | raise TypeError("unhashable type (it is mutable)") |
nothing calls this directly
no outgoing calls
no test coverage detected