Function: python-info-end-of-block-p

python-info-end-of-block-p is a byte-compiled function defined in python.el.gz.

Signature

(python-info-end-of-block-p)

Documentation

Return non-nil if point is at end of block.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/python.el.gz
(defun python-info-end-of-block-p ()
  "Return non-nil if point is at end of block."
  (and (= (point) (save-excursion
                    (python-nav-end-of-statement)
                    (python-util-forward-comment -1)
                    (point)))
       (python-info-statement-ends-block-p)))