Function: python-util-goto-line
python-util-goto-line is a byte-compiled function defined in
python.el.gz.
Signature
(python-util-goto-line LINE-NUMBER)
Documentation
Move point to LINE-NUMBER.
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/python.el.gz
;;; Utility functions
(defun python-util-goto-line (line-number)
"Move point to LINE-NUMBER."
(goto-char (point-min))
(forward-line (1- line-number)))