Function: python-fill-comment
python-fill-comment is a byte-compiled function defined in
python.el.gz.
Signature
(python-fill-comment &optional JUSTIFY)
Documentation
Comment fill function for python-fill-paragraph.
JUSTIFY should be used (if applicable) as in fill-paragraph.
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/python.el.gz
(defun python-fill-comment (&optional justify)
"Comment fill function for `python-fill-paragraph'.
JUSTIFY should be used (if applicable) as in `fill-paragraph'."
(fill-comment-paragraph justify))