8000 BUG: Fix f2py derived types in modules by charris · Pull Request #29044 · numpy/numpy · GitHub
[go: up one dir, main page]

Skip to content

BUG: Fix f2py derived types in modules #29044

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 3 commits into from
May 23, 2025
Merged
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
fix W291
  • Loading branch information
zoghbi-a authored and charris committed May 23, 2025
commit d0544fe534323b7058edf326e7eed27898141f4d
2 changes: 1 addition & 1 deletion numpy/f2py/tests/test_regression.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ class TestModuleWithDerivedType(util.F2PyTest):
@pytest.mark.slow
def test_mtypes(self):
assert self.module.no_type_subroutine(10) == 110
assert self.module.type_subroutine(10) == 210
assert self.module.type_subroutine(10) == 210


class TestNegativeBounds(util.F2PyTest):
Expand Down
Loading
0