pdoc_pyo3_sample_library

This is a PyO3 demo library used to verify that submodules are handled properly.

1from .pdoc_pyo3_sample_library import *
2
3__doc__ = pdoc_pyo3_sample_library.__doc__
4if hasattr(pdoc_pyo3_sample_library, "__all__"):
5    __all__ = pdoc_pyo3_sample_library.__all__