Function: python-shell-internal-get-process-name

python-shell-internal-get-process-name is a byte-compiled function defined in python.el.gz.

Signature

(python-shell-internal-get-process-name)

Documentation

Calculate the appropriate process name for Internal Python process.

The name is calculated from python-shell-buffer-name and the buffer-name.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/python.el.gz
(defun python-shell-internal-get-process-name ()
  "Calculate the appropriate process name for Internal Python process.
The name is calculated from `python-shell-buffer-name' and
the `buffer-name'."
  (format "%s[%s]" python-shell-internal-buffer-name (buffer-name)))