Function: python-nav-backward-up-list
python-nav-backward-up-list is an interactive and byte-compiled
function defined in python.el.gz.
Signature
(python-nav-backward-up-list &optional ARG)
Documentation
Move backward out of one level of parentheses (or blocks).
With ARG, do this that many times. A negative argument means move forward but still to a less deep spot. This command assumes point is not in a string or comment.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/python.el.gz
(defun python-nav-backward-up-list (&optional arg)
"Move backward out of one level of parentheses (or blocks).
With ARG, do this that many times.
A negative argument means move forward but still to a less deep spot.
This command assumes point is not in a string or comment."
(interactive "^p")
(or arg (setq arg 1))
(python-nav-up-list (- arg)))