8000 ENH: provide a convenience function to replace npy_load_module by mattip · Pull Request #20395 · numpy/numpy · GitHub
[go: up one dir, main page]

Skip to content

ENH: provide a convenience function to replace npy_load_module #20395

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
Nov 19, 2021
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
Update numpy/random/tests/test_extending.py
  • Loading branch information
WarrenWeckesser authored Nov 19, 2021
commit e7bd40144cabe35982e95e60c95ec6d33313c2e2
2 changes: 1 addition & 1 deletion numpy/random/tests/test_extending.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ def test_cython(tmp_path):
assert so1 is not None
assert so2 is not None
# import the so's without adding the directory to sys.path
extending = exec_mod_from_location('extending', so1)
exec_mod_from_location('extending', so1)
extending_distributions = exec_mod_from_location(
'extending_distributions', so2)
# actually test the cython c-extension
Expand Down
0