(self, other)
| 56 | return self.cdata |
| 57 | |
| 58 | def __eq__(self, other): |
| 59 | if id(self) == id(other): |
| 60 | return True |
| 61 | return self.cdata == other.cdata |
| 62 | |
| 63 | |
| 64 | class SharedCache(dict): |
nothing calls this directly
no outgoing calls
no test coverage detected