diff options
author | Rohit Goswami <rog32@hi.is> | 2022-04-29 03:25:05 +0000 |
---|---|---|
committer | Rohit Goswami <rog32@hi.is> | 2022-04-29 03:25:05 +0000 |
commit | c409bd5c98fbf17220d61f8e2209b931cdb514a8 (patch) | |
tree | 1574a4890cfb4204c2ccb41e97405b9fe591697f /doc/source/f2py | |
parent | 0eaa40db3a2f6bef26c0d7cc28eacf4f6d461917 (diff) | |
download | numpy-c409bd5c98fbf17220d61f8e2209b931cdb514a8.tar.gz |
DOC: Update set of allowed f2cmap types
Diffstat (limited to 'doc/source/f2py')
-rw-r--r-- | doc/source/f2py/advanced.rst | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/doc/source/f2py/advanced.rst b/doc/source/f2py/advanced.rst index c8efbaadb..cf9984380 100644 --- a/doc/source/f2py/advanced.rst +++ b/doc/source/f2py/advanced.rst @@ -79,14 +79,18 @@ that defines mapping between Fortran type:: and the corresponding <C type>. The <C type> can be one of the following:: + double + float + long_double char signed_char + unsigned_char short + unsigned_short int + long long_long - float - double - long_double + unsigned complex_float complex_double complex_long_double |