diff options
author | Sebastian Berg <sebastian@sipsolutions.net> | 2022-05-03 16:50:28 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-03 16:50:28 +0200 |
commit | 26c1e04b3af572ed4ee1cc2f9ac3faca27858dc5 (patch) | |
tree | eb9acf3b3100ed1ecd0fb6559a60560d9b0240df /doc | |
parent | 5c740d0ca3d35c151c5120a551a69319ffac04d9 (diff) | |
parent | c409bd5c98fbf17220d61f8e2209b931cdb514a8 (diff) | |
download | numpy-26c1e04b3af572ed4ee1cc2f9ac3faca27858dc5.tar.gz |
Merge pull request #21410 from HaoZeke/gh19159
DOC: Update set of allowed f2cmap types
Diffstat (limited to 'doc')
-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 |