diff options
author | Travis Oliphant <oliphant@enthought.com> | 2006-03-08 22:47:17 +0000 |
---|---|---|
committer | Travis Oliphant <oliphant@enthought.com> | 2006-03-08 22:47:17 +0000 |
commit | 704204550661e497888ac879e292cb69a55bbd8c (patch) | |
tree | 2f0eb084f0e33475b2713079a63e30242efbb262 /numpy/f2py/src/fortranobject.h | |
parent | 07d036080bcac11ef5ff601b5f6a3215fed230c8 (diff) | |
download | numpy-704204550661e497888ac879e292cb69a55bbd8c.tar.gz |
Fix f2py to handle character arrays in common blocks
Diffstat (limited to 'numpy/f2py/src/fortranobject.h')
-rw-r--r-- | numpy/f2py/src/fortranobject.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/numpy/f2py/src/fortranobject.h b/numpy/f2py/src/fortranobject.h index 44778822a..353b2a64b 100644 --- a/numpy/f2py/src/fortranobject.h +++ b/numpy/f2py/src/fortranobject.h @@ -92,6 +92,7 @@ typedef struct { #define PyFortran_Check1(op) (0==strcmp((op)->ob_type->tp_name,"fortran")) extern PyTypeObject PyFortran_Type; + extern int F2PyDict_SetItemString(PyObject* dict, char *name, PyObject *obj); extern PyObject * PyFortranObject_New(FortranDataDef* defs, f2py_void_func init); extern PyObject * PyFortranObject_NewAsAttr(FortranDataDef* defs); |