summaryrefslogtreecommitdiff
path: root/weave/ext_tools.py
diff options
context:
space:
mode:
authorEric Jones <eric@enthought.com>2004-10-13 06:31:29 +0000
committerEric Jones <eric@enthought.com>2004-10-13 06:31:29 +0000
commit8a844dd8e0bbb5168884d5ea9f6e37fc6275104a (patch)
treef05df819ad10307d9725cab3a3f6855b05bef511 /weave/ext_tools.py
parentf42b743431beed95b0b354e091133b66aecd50f0 (diff)
downloadnumpy-8a844dd8e0bbb5168884d5ea9f6e37fc6275104a.tar.gz
removed "file changed" print statement
Diffstat (limited to 'weave/ext_tools.py')
-rw-r--r--weave/ext_tools.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/weave/ext_tools.py b/weave/ext_tools.py
index f12fefc3a..8e9f3c016 100644
--- a/weave/ext_tools.py
+++ b/weave/ext_tools.py
@@ -206,13 +206,13 @@ class ext_module:
return all_arg_specs
def build_information(self):
- info = [self.customize] + self._build_information + \
+ info = self._build_information + [self.customize] + \
self.arg_specs().build_information()
for func in self.functions:
info.append(func.customize)
#redundant, but easiest place to make sure compiler is set
for i in info:
- i.set_compiler(self.compiler)
+ i.set_compiler(self.compiler
return info
def get_headers(self):
@@ -357,7 +357,6 @@ def generate_module(module_string, module_file):
if old_string == module_string:
file_changed = 0
if file_changed:
- print 'file changed'
f =open(module_file,'w')
f.write(module_string)
f.close()