Function: python-describe-at-point

python-describe-at-point is an interactive and byte-compiled function defined in python.el.gz.

Signature

(python-describe-at-point SYMBOL PROCESS)

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/python.el.gz
(defun python-describe-at-point (symbol process)
  (interactive (list (python-info-current-symbol)
                     (python-shell-get-process)))
  (comint-send-string process (concat "help('" symbol "')\n")))