summaryrefslogtreecommitdiff
path: root/numpy/f2py/crackfortran.py
diff options
context:
space:
mode:
authorPearu Peterson <pearu.peterson@gmail.com>2009-10-25 09:37:31 +0000
committerPearu Peterson <pearu.peterson@gmail.com>2009-10-25 09:37:31 +0000
commit11de890bdf5d91179cd9f75062e27a89a5f9fffb (patch)
treece5ddbf1b213b5ea1ea8d75ca0ad40c11299f6aa /numpy/f2py/crackfortran.py
parent944524fa0ba6a9a174e1e3af99be61f35c8b4503 (diff)
downloadnumpy-11de890bdf5d91179cd9f75062e27a89a5f9fffb.tar.gz
Introduced intent(align4|align8|align16) attributes. Fixes scipy ticket 794 after using intent(align8) in the corresponding scipy pyf files.
Diffstat (limited to 'numpy/f2py/crackfortran.py')
-rwxr-xr-xnumpy/f2py/crackfortran.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/f2py/crackfortran.py b/numpy/f2py/crackfortran.py
index 9901eb11d..9f6f7c710 100755
--- a/numpy/f2py/crackfortran.py
+++ b/numpy/f2py/crackfortran.py
@@ -84,7 +84,7 @@ f2py_version = __version__.version
D['typespec'] = 'byte' | 'character' | 'complex' | 'double complex' |
'double precision' | 'integer' | 'logical' | 'real' | 'type'
D['attrspec'] --- list of attributes (e.g. 'dimension(<arrayspec>)',
- 'external','intent(in|out|inout|hide|c|callback|cache)',
+ 'external','intent(in|out|inout|hide|c|callback|cache|aligned4|aligned8|aligned16)',
'optional','required', etc)
K = D['kindselector'] = {['*','kind']} (only if D['typespec'] =
'complex' | 'integer' | 'logical' | 'real' )