mirror of
https://github.com/python/cpython.git
synced 2025-08-31 05:58:33 +00:00
remove most uses of list(somedict.keys()) in Demo scripts
This commit is contained in:
parent
28a181cbe8
commit
1e8ce58f5d
17 changed files with 31 additions and 46 deletions
|
@ -89,7 +89,7 @@ def compare(local, remote, mode):
|
|||
else:
|
||||
print("same mtime but different sum?!?!", end=' ')
|
||||
print()
|
||||
for name in list(lsumdict.keys()):
|
||||
for name in lsumdict.keys():
|
||||
if not list(rsumdict.keys()):
|
||||
print(repr(name), "only locally", end=' ')
|
||||
fl()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue