Pārlūkot izejas kodu

ob: python: Don't bother removing echoed output in value mode

* lisp/ob-python.el (org-babel-python-evaluate-session): Pass nil as
remove-echo part of META argument to `org-babel-comint-with-output'

The regexp matching involved in this procedure can fail on large input
data, so we only do it when necessary (i.e. output mode).
Dan Davison 14 gadi atpakaļ
vecāks
revīzija
8e4b9b3a6a
1 mainītis faili ar 1 papildinājumiem un 1 dzēšanām
  1. 1 1
      lisp/ob-python.el

+ 1 - 1
lisp/ob-python.el

@@ -265,7 +265,7 @@ last statement in BODY, as elisp."
 	    (org-babel-python-table-or-string results)))
 	(let ((tmp-file (org-babel-temp-file "python-")))
 	  (org-babel-comint-with-output
-	      (session org-babel-python-eoe-indicator t body)
+	      (session org-babel-python-eoe-indicator nil body)
 	    (let ((comint-process-echoes nil))
 	      (input-body body)
 	      (dump-last-value tmp-file (member "pp" result-params))