mirror of
https://github.com/python/cpython.git
synced 2025-07-07 19:35:27 +00:00
Fix token.py main code vs. dict views.
This commit is contained in:
parent
634e53fad4
commit
b79b78111c
1 changed files with 1 additions and 1 deletions
|
@ -108,7 +108,7 @@ def main():
|
|||
name, val = match.group(1, 2)
|
||||
val = int(val)
|
||||
tokens[val] = name # reverse so we can sort them...
|
||||
keys = tokens.keys()
|
||||
keys = list(tokens.keys())
|
||||
keys.sort()
|
||||
# load the output skeleton from the target:
|
||||
try:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue