Function: python-info-dedenter-opening-block-message
python-info-dedenter-opening-block-message is a byte-compiled function
defined in python.el.gz.
Signature
(python-info-dedenter-opening-block-message)
Documentation
Message the first line of the block the current statement closes.
Aliases
python-info-closing-block-message (obsolete since 24.4)
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/python.el.gz
(defun python-info-dedenter-opening-block-message ()
"Message the first line of the block the current statement closes."
(let ((point (python-info-dedenter-opening-block-position)))
(when point
(message "Closes %s" (save-excursion
(goto-char point)
(buffer-substring
(point) (line-end-position)))))))