This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class Token: | |
| def __init__(self, lh, rh): | |
| self.lh = lh | |
| self.rh = rh | |
| def __str__(self): | |
| return self.stringify() | |
| def __hash__(self): | |
| return str(self).__hash__() |
OlderNewer