Function: python-imenu-format-parent-item-jump-label
python-imenu-format-parent-item-jump-label is a byte-compiled function
defined in python.el.gz.
Signature
(python-imenu-format-parent-item-jump-label TYPE NAME)
Documentation
Return Imenu label for parent node jump using TYPE and NAME.
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/python.el.gz
(defun python-imenu-format-parent-item-jump-label (type _name)
"Return Imenu label for parent node jump using TYPE and NAME."
(if (string= type "class")
"*class definition*"
"*function definition*"))