summaryrefslogtreecommitdiff
path: root/numpy/distutils/conv_template.py
diff options
context:
space:
mode:
Diffstat (limited to 'numpy/distutils/conv_template.py')
-rw-r--r--numpy/distutils/conv_template.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/distutils/conv_template.py b/numpy/distutils/conv_template.py
index 61200e0c1..6b969cef3 100644
--- a/numpy/distutils/conv_template.py
+++ b/numpy/distutils/conv_template.py
@@ -271,7 +271,7 @@ def resolve_includes(source):
d = os.path.dirname(source)
fid = open(source)
lines = []
- for line in fid.readlines():
+ for line in fid:
m = include_src_re.match(line)
if m:
fn = m.group('name')