I can't get rid of the emacs cvs python mode to use
this python-mode
I followed the install instructions at
http://www.python.org/emacs/python-mode/installation.html
but it's not working. it's still loading the other
python mode
Library is file ~/python-mode/python-mode.elc
Library is file
/usr/local/share/emacs/21.3.50/lisp/progmodes/python.elc
my .emacs has:
;; python mode
(setq load-path (cons "~/python-mode/" load-path))
(setq auto-mode-alist
(cons '("\\.py$" . python-mode) auto-mode-alist))
(setq interpreter-mode-alist
(cons '("python" . python-mode)
interpreter-mode-alist))