From e50fa8e71482160e31d99a3561a433d06217f4c7 Mon Sep 17 00:00:00 2001 From: Pearu Peterson Date: Wed, 9 Apr 2008 11:53:02 +0000 Subject: Fix issue 587 --- numpy/f2py/rules.py | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-) (limited to 'numpy/f2py/rules.py') diff --git a/numpy/f2py/rules.py b/numpy/f2py/rules.py index f9bf5dcd9..825b13b23 100644 --- a/numpy/f2py/rules.py +++ b/numpy/f2py/rules.py @@ -517,12 +517,17 @@ rout_rules=[ ################ Rules for arguments ################## typedef_need_dict = {islong_long:'long_long', - islong_double:'long_double', - islong_complex:'complex_long_double', - isunsigned_char:'unsigned_char', - isunsigned_short:'unsigned_short', - isunsigned:'unsigned', - isunsigned_long_long:'unsigned_long_long'} + islong_double:'long_double', + islong_complex:'complex_long_double', + isunsigned_char:'unsigned_char', + isunsigned_short:'unsigned_short', + isunsigned:'unsigned', + isunsigned_long_long:'unsigned_long_long', + isunsigned_chararray:'unsigned_char', + isunsigned_shortarray:'unsigned_short', + isunsigned_long_longarray:'unsigned_long_long', + issigned_long_longarray:'long_long', + } aux_rules=[ { -- cgit v1.2.1