Join GitHub today
GitHub is home to over 36 million developers working together to host and review code, manage projects, and build software together.
Sign uppdoc doesn't find methods of cython extension types #49
Comments
This comment has been minimized.
This comment has been minimized.
|
To demonstrate, create a package Shrubbery with setup.py setup.py:
Shrubbery/init.py:
Shrubbery/_Shrubbery.pyx:
After installation,
Note that the |
This comment has been minimized.
This comment has been minimized.
|
Here's my workaround, in case it helps
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
jswhit commentedMay 18, 2015
Ran into this when trying to use pdoc to generate html docs from docstrings in my project (netcdf4-python). If you have a Cython extension type, for example
pdoc will generate the documentation for the class, and it's instance variables, but not it's methods. Is this a known issue? If so, are there workarounds?