We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9748a84 commit e7cbe64Copy full SHA for e7cbe64
pymake/_pymake.py
@@ -49,7 +49,7 @@ def parse_makefile_aliases(filepath):
49
# Substitute macros
50
macros = dict(RE_MACRO_DEF.findall(ini_str))
51
for _ in range(99): # allow finite amount of nesting
52
- for (m, expr) in macros.iteritems():
+ for (m, expr) in macros.items():
53
remacros = re.compile(r"\$\(" + m + "\)", flags=re.M)
54
ini_str = remacros.sub(expr, ini_str)
55
if not RE_MACRO.match(ini_str):
0 commit comments