Skip to content

Commit

Permalink
Merge pull request #124 from boriel/fix_parsetab_signature_py3
Browse files Browse the repository at this point in the history
Fix issue #31 on python3
  • Loading branch information
dabeaz committed May 11, 2017
2 parents b791b08 + eb7e15a commit cbef61c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ply/yacc.py
Expand Up @@ -3070,7 +3070,7 @@ def get_tokens(self):
self.error = True
return

self.tokens = tokens
self.tokens = sorted(tokens)

# Validate the tokens
def validate_tokens(self):
Expand Down

0 comments on commit cbef61c

Please sign in to comment.