Variable: gud-pdb-command-name

gud-pdb-command-name is a customizable variable defined in gud.el.gz.

Value

"python -m pdb"

Documentation

Command that executes the Python debugger.

This variable was added, or its default value changed, in Emacs 27.1.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/gud.el.gz
(defcustom gud-pdb-command-name
  (if (executable-find "pdb") "pdb" "python -m pdb")
  "Command that executes the Python debugger."
  :version "27.1"
  :type 'string)