More progress in migration to dual Python 2&3. Just 2 tests left.

This commit is contained in:
Sei Lisa 2020-11-10 00:15:48 +01:00
parent f8cf78dfac
commit 16d8c4c9d1
7 changed files with 65 additions and 60 deletions

View file

@ -175,7 +175,7 @@ class renamer(object):
# Skip globals
continue
InParams = False
for name,sym in table.iteritems():
for name,sym in table.items():
if name == -1: continue
if sym['Kind'] != 'v':
assert sym['Kind'] == 'l'