Skip to content

Commit

Permalink
Merge pull request #19360 from rgommers/fix-distutils-prints
Browse files Browse the repository at this point in the history
MAINT: remove `print()`'s in distutils template handling
  • Loading branch information
mattip committed Jun 27, 2021
2 parents cbec2c8 + 7f45b55 commit b970937
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion numpy/distutils/conv_template.py
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,6 @@ def resolve_includes(source):
if not os.path.isabs(fn):
fn = os.path.join(d, fn)
if os.path.isfile(fn):
print('Including file', fn)
lines.extend(resolve_includes(fn))
else:
lines.append(line)
Expand Down
1 change: 0 additions & 1 deletion numpy/distutils/from_template.py
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,6 @@ def resolve_includes(source):
if not os.path.isabs(fn):
fn = os.path.join(d, fn)
if os.path.isfile(fn):
print('Including file', fn)
lines.extend(resolve_includes(fn))
else:
lines.append(line)
Expand Down

0 comments on commit b970937

Please sign in to comment.