(self,var)
| 35 | def __init__(self): |
| 36 | self.mydict={} |
| 37 | def canonical(self,var): |
| 38 | while var in self.mydict: |
| 39 | var=self.mydict[var] |
| 40 | return var |
| 41 | def isCanonical(self,var): |
| 42 | if self.canonical(var)==var: |
| 43 | return True |
no outgoing calls
no test coverage detected