Closed ravenzhang closed 10 years ago
I found a bug, in file : tokenizer.py line 470 : escape_code = int(self.data[j:j+4], 16) should be: escape_code = int(data[j:j+4], 16)
Thanks for your great job!
Thanks for the heads up @ravenzhang! I just committed and pushed the fix.
I found a bug, in file : tokenizer.py line 470 :
escape_code = int(self.data[j:j+4], 16) should be: escape_code = int(data[j:j+4], 16)
Thanks for your great job!