mirror of
https://github.com/python/cpython.git
synced 2024-11-26 03:14:27 +08:00
Fix token.py main code vs. dict views.
This commit is contained in:
parent
634e53fad4
commit
b79b78111c
@ -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…
Reference in New Issue
Block a user