diff options
author | Travis Oliphant <oliphant@enthought.com> | 2005-10-26 04:52:01 +0000 |
---|---|---|
committer | Travis Oliphant <oliphant@enthought.com> | 2005-10-26 04:52:01 +0000 |
commit | 146140cce09b455477d56c06df22aafe647ae6c6 (patch) | |
tree | d9b2a77d1787a3ef33abf571bfc0260b4f9f1954 /scipy/weave/c_spec.py | |
parent | 98830f76c36d104d8bd18d2c794500f51ba645b2 (diff) | |
download | numpy-146140cce09b455477d56c06df22aafe647ae6c6.tar.gz |
Added more types to weave.
Diffstat (limited to 'scipy/weave/c_spec.py')
-rw-r--r-- | scipy/weave/c_spec.py | 18 |
1 files changed, 12 insertions, 6 deletions
diff --git a/scipy/weave/c_spec.py b/scipy/weave/c_spec.py index cc61058e3..5707f2cb8 100644 --- a/scipy/weave/c_spec.py +++ b/scipy/weave/c_spec.py @@ -299,20 +299,26 @@ num_to_c_types[type(1L)] = 'int' # Numeric array Python numeric --> C type maps #---------------------------------------------------------------------------- num_to_c_types['T'] = 'T' # for templates +num_to_c_types['G'] = 'std::complex<longdouble> ' num_to_c_types['F'] = 'std::complex<float> ' num_to_c_types['D'] = 'std::complex<double> ' +num_to_c_types['g'] = 'longdouble' num_to_c_types['f'] = 'float' num_to_c_types['d'] = 'double' -num_to_c_types['1'] = 'char' -num_to_c_types['b'] = 'unsigned char' -num_to_c_types['s'] = 'short' -num_to_c_types['w'] = 'unsigned short' +num_to_c_types['b'] = 'char' +num_to_c_types['B'] = 'uchar' +num_to_c_types['h'] = 'short' +num_to_c_types['H'] = 'ushort' num_to_c_types['i'] = 'int' -num_to_c_types['u'] = 'unsigned int' +num_to_c_types['I'] = 'uint' # not strictly correct, but shoulld be fine fo numeric work. # add test somewhere to make sure long can be cast to int before using. -num_to_c_types['l'] = 'int' +num_to_c_types['l'] = 'long' +num_to_c_types['L'] = 'ulong' + +num_to_c_types['q'] = 'longlong' +num_to_c_types['Q'] = 'ulonglong' class scalar_converter(common_base_converter): def init_info(self): |