Alexander Volkovsky

Results 4 comments of Alexander Volkovsky

@Peque , the same applies to all functions :) At the moment, `pyxirr` doesn't support vectorized calculations. I have it in the [roadmap](https://github.com/Anexen/pyxirr#roadmap), but I don't have any estimates. Despite...

> I plan on supporting custom package managers per project in #25, would something similar where you specify the command as well help? Yes, it would be great. Regarding other...

I finally managed to get this to work! I think I have developed an approach and will add vectorized versions of functions in the foreseeable future (probably by the end...

Here is my solution that correctly sets `__name__` for both submodule and the function: ```rust #[pymodule] fn supermodule(py: Python, m: &PyModule) -> PyResult { let child_module = PyModule::new(py, "supermodule.submodule")?; submodule(py,...