Skip to content

Commit e7cbe64

Browse files
committed
Fix py3 unit test
Signed-off-by: Stephen L. <[email protected]>
1 parent 9748a84 commit e7cbe64

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pymake/_pymake.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ def parse_makefile_aliases(filepath):
4949
# Substitute macros
5050
macros = dict(RE_MACRO_DEF.findall(ini_str))
5151
for _ in range(99): # allow finite amount of nesting
52-
for (m, expr) in macros.iteritems():
52+
for (m, expr) in macros.items():
5353
remacros = re.compile(r"\$\(" + m + "\)", flags=re.M)
5454
ini_str = remacros.sub(expr, ini_str)
5555
if not RE_MACRO.match(ini_str):

0 commit comments

Comments
 (0)