Variable: python-shell-prompt-output-regexps
python-shell-prompt-output-regexps is a customizable variable defined
in python.el.gz.
Value
("" "Out\\[[0-9]+\\]: " "Out :")
Documentation
List of regular expressions matching output prompts.
This variable was added, or its default value changed, in Emacs 24.4.
Probably introduced at or before Emacs version 24.4.
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/python.el.gz
(defcustom python-shell-prompt-output-regexps
'("" ; Python
"Out\\[[0-9]+\\]: " ; IPython
"Out :") ; ipdb safeguard
"List of regular expressions matching output prompts."
:type '(repeat regexp)
:version "24.4")