I have Elpy version 1.35.0 in Emacs 28.2. I'm trying to use elpy-doc
on functions in modules that my Python program imports. I know that the functions have docstrings (because I wrote those modules), but elpy-doc
returns empty results for them.
How can I debug why elpy-doc
is failing? I would normally use edebug-defun
and trace through functions in Emacs until I figure out what's happening, but Elpy uses a Python backend via some RPC mechanism, and I haven't figured out how to put a breakpoint into the docstring function that gets invoked.
sys
) – mhucka Apr 20 '23 at 23:10