summaryrefslogtreecommitdiff
path: root/weave/blitz_spec.py
diff options
context:
space:
mode:
Diffstat (limited to 'weave/blitz_spec.py')
-rw-r--r--weave/blitz_spec.py7
1 files changed, 3 insertions, 4 deletions
diff --git a/weave/blitz_spec.py b/weave/blitz_spec.py
index 088a03560..2f0c97ba7 100644
--- a/weave/blitz_spec.py
+++ b/weave/blitz_spec.py
@@ -4,13 +4,12 @@
handle different data types. The information includes
such as include files, libraries, and even code snippets.
- array_info -- for building functions that use Python
- numerix arrays.
+ array_info -- for building functions that use scipy arrays
"""
import base_info
import standard_array_spec
-from scipy_base.numerix import *
+from scipy.base import *
from types import *
import os
@@ -85,7 +84,7 @@ class array_converter(standard_array_spec.array_converter):
def init_info(self):
standard_array_spec.array_converter.init_info(self)
blitz_headers = ['"blitz/array.h"',
- '"%s/arrayobject.h"' % nx.NX_ARRAYPKG,
+ '"scipy/arrayobject.h"',
'<complex>','<math.h>']
self.headers.extend(blitz_headers)
self.include_dirs = [blitz_dir]