8000 BUG, ENH: Fix ``iso_c_binding`` type maps and fix ``bind(c)`` support by charris · Pull Request #24622 · numpy/numpy · GitHub
[go: up one dir, main page]

Skip to content

BUG, ENH: Fix iso_c_binding type maps and fix bind(c) support #24622

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 17 commits into from
Sep 2, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
MAINT: Rename docstring, modify tests
Co-authored-by: mattip <mattip@users.noreply.github.com>
  • Loading branch information
2 people authored and charris committed Sep 2, 2023
commit 71c1a52967490c64a7e85e69eacaf13be559056e
2 changes: 1 addition & 1 deletion numpy/f2py/auxfuncs.py
Original file line number Diff line number Diff line change
Expand Up @@ -892,7 +892,7 @@ def applyrules(rules, d, var={}):
return ret

def deep_merge(dict1, dict2):
"""Deep merge two dictionaries and return a new dictionary.
"""Recursively merge two dictionaries into a new dictionary.

Parameters:
- dict1: The base dictionary.
Expand Down
2 changes: 1 addition & 1 deletion numpy/f2py/tests/src/isocintrin/isoCtests.f90
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ subroutine c_add(a, b, c) bind(c, name="c_add")
c = a + b
end subroutine c_add
! gh-9693
function wat(x, y) result(z) bind(c, name='wat')
function wat(x, y) result(z) bind(c)
integer(c_int), intent(in) :: x, y
integer(c_int) :: z

Expand Down
0