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
_statistics
_normal_dist_inv_cdf
This should be relatively easy. _statistics needs to be defined as a built-in module and _normal_dist_inv_cdf should be added as its sole function.
_normal_dist_inv_cdf is pretty straight-forward to implement with the C version being a pretty direct translation from the Python version.
The text was updated successfully, but these errors were encountered:
Basic scaffold for the module (to be placed in stdlib/src):
stdlib/src
pub(crate) use _statistics::make_module; #[pymodule] mod _statistics { #[pyfunction] fn _normal_dist_inv_cdf(...) {} }
it then needs to be exported in stdlib/src/lib.rs in a similar way to other modules.
stdlib/src/lib.rs
Loading
Sorry, something went wrong.
Add _statistics module containing _normal_dist_inv_cd
_normal_dist_inv_cd
d898c2b
Closes RustPython#3251
Successfully merging a pull request may close this issue.
This should be relatively easy.
_statistics
needs to be defined as a built-in module and_normal_dist_inv_cdf
should be added as its sole function._normal_dist_inv_cdf
is pretty straight-forward to implement with the C version being a pretty direct translation from the Python version.The text was updated successfully, but these errors were encountered: