(python-mode): comment-multi-line must be nil for Emacs 19
diff --git a/Misc/python-mode.el b/Misc/python-mode.el
index eb94759..c84ede4 100644
--- a/Misc/python-mode.el
+++ b/Misc/python-mode.el
@@ -407,6 +407,9 @@
 	mode-name "Python"
 	local-abbrev-table python-mode-abbrev-table)
   (use-local-map py-mode-map)
+  ;; Emacs 19 requires this
+  (if (or py-this-is-lucid-emacs-p py-this-is-emacs-19-p)
+      (setq comment-multi-line nil))
   ;; BAW -- style...
   (mapcar (function (lambda (x)
 		      (make-local-variable (car x))