aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/progmodes/python.el
diff options
context:
space:
mode:
Diffstat (limited to 'lisp/progmodes/python.el')
-rw-r--r--lisp/progmodes/python.el8
1 files changed, 4 insertions, 4 deletions
diff --git a/lisp/progmodes/python.el b/lisp/progmodes/python.el
index 777436cf89b..f5b75686f50 100644
--- a/lisp/progmodes/python.el
+++ b/lisp/progmodes/python.el
@@ -1232,11 +1232,11 @@ uniqueness for different types of configurations."
1232 python-shell-prompt-block-regexp 1232 python-shell-prompt-block-regexp
1233 python-shell-prompt-output-regexp 1233 python-shell-prompt-output-regexp
1234 (mapconcat #'symbol-value python-shell-setup-codes "") 1234 (mapconcat #'symbol-value python-shell-setup-codes "")
1235 (mapconcat #'indentity python-shell-process-environment "") 1235 (mapconcat #'identity python-shell-process-environment "")
1236 (mapconcat #'indentity python-shell-extra-pythonpaths "") 1236 (mapconcat #'identity python-shell-extra-pythonpaths "")
1237 (mapconcat #'indentity python-shell-exec-path "") 1237 (mapconcat #'identity python-shell-exec-path "")
1238 (or python-shell-virtualenv-path "") 1238 (or python-shell-virtualenv-path "")
1239 (mapconcat #'indentity python-shell-exec-path ""))))) 1239 (mapconcat #'identity python-shell-exec-path "")))))
1240 1240
1241(defun python-shell-parse-command () 1241(defun python-shell-parse-command ()
1242 "Calculate the string used to execute the inferior Python process." 1242 "Calculate the string used to execute the inferior Python process."