sphinx-apidoc is an awesome tool, but unfortunately it skips .pyx
files (Cython files).  I hacked into apidoc.py and changed the line
165 to read

py_files = sorted([f for f in files if path.splitext(f)[1] in
['.py','.pyx']])

and now it reads Cython and CPython files.  Perhaps this would be
better to implement based on a flag, but this functionality is very
important for me and other Cython users.

Regards,
Ian

-- 
You received this message because you are subscribed to the Google Groups 
"sphinx-dev" group.
To post to this group, send email to sphinx-dev@googlegroups.com.
To unsubscribe from this group, send email to 
sphinx-dev+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/sphinx-dev?hl=en.

Reply via email to