(python-mode): font-lock-defaults necessary for Emacs 19, but doesn't
hurt for XEmacs.
diff --git a/Misc/python-mode.el b/Misc/python-mode.el
index 98876d8..357074e 100644
--- a/Misc/python-mode.el
+++ b/Misc/python-mode.el
@@ -662,7 +662,9 @@
   (set-syntax-table py-mode-syntax-table)
   (setq major-mode 'python-mode
 	mode-name "Python"
-	local-abbrev-table python-mode-abbrev-table)
+	local-abbrev-table python-mode-abbrev-table
+	font-lock-defaults '(python-font-lock-keywords)
+	)
   (use-local-map py-mode-map)
   ;; add the menu
   (if py-menu