2010-06-11 23:02:42 +00:00
|
|
|
;;; ob-python.el --- org-babel functions for python evaluation
|
2009-06-12 15:46:00 +00:00
|
|
|
|
2013-01-08 14:04:32 +00:00
|
|
|
;; Copyright (C) 2009-2013 Free Software Foundation, Inc.
|
2009-06-12 15:46:00 +00:00
|
|
|
|
2012-04-01 22:53:28 +00:00
|
|
|
;; Authors: Eric Schulte
|
|
|
|
;; Dan Davison
|
2009-06-12 15:46:00 +00:00
|
|
|
;; Keywords: literate programming, reproducible research
|
|
|
|
;; Homepage: http://orgmode.org
|
|
|
|
|
2010-06-25 16:32:35 +00:00
|
|
|
;; This file is part of GNU Emacs.
|
2009-06-12 15:46:00 +00:00
|
|
|
|
2010-06-25 16:32:35 +00:00
|
|
|
;; GNU Emacs is free software: you can redistribute it and/or modify
|
2009-06-12 15:46:00 +00:00
|
|
|
;; it under the terms of the GNU General Public License as published by
|
2010-06-25 16:32:35 +00:00
|
|
|
;; the Free Software Foundation, either version 3 of the License, or
|
|
|
|
;; (at your option) any later version.
|
|
|
|
|
|
|
|
;; GNU Emacs is distributed in the hope that it will be useful,
|
2009-06-12 15:46:00 +00:00
|
|
|
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
;; GNU General Public License for more details.
|
2010-06-25 16:32:35 +00:00
|
|
|
|
2009-06-12 15:46:00 +00:00
|
|
|
;; You should have received a copy of the GNU General Public License
|
2010-06-25 16:32:35 +00:00
|
|
|
;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
|
2009-06-12 15:46:00 +00:00
|
|
|
|
|
|
|
;;; Commentary:
|
|
|
|
|
|
|
|
;; Org-Babel support for evaluating python source code.
|
|
|
|
|
|
|
|
;;; Code:
|
2010-06-11 23:02:42 +00:00
|
|
|
(require 'ob)
|
2010-07-03 02:21:31 +00:00
|
|
|
(eval-when-compile (require 'cl))
|
|
|
|
|
|
|
|
(declare-function org-remove-indentation "org" )
|
2010-07-09 17:58:12 +00:00
|
|
|
(declare-function py-shell "ext:python-mode" (&optional argprompt))
|
2010-12-14 01:45:26 +00:00
|
|
|
(declare-function py-toggle-shells "ext:python-mode" (arg))
|
2013-07-27 06:21:22 +00:00
|
|
|
(declare-function run-python "ext:python" (cmd &optional dedicated show))
|
2009-06-12 15:46:00 +00:00
|
|
|
|
2011-06-21 22:34:41 +00:00
|
|
|
(defvar org-babel-tangle-lang-exts)
|
2010-06-17 17:21:14 +00:00
|
|
|
(add-to-list 'org-babel-tangle-lang-exts '("python" . "py"))
|
|
|
|
|
2010-06-25 17:12:54 +00:00
|
|
|
(defvar org-babel-default-header-args:python '())
|
|
|
|
|
2013-02-23 09:27:55 +00:00
|
|
|
(defcustom org-babel-python-command "python"
|
|
|
|
"Name of the command for executing Python code."
|
2013-02-26 17:21:28 +00:00
|
|
|
:version "24.4"
|
|
|
|
:package-version '(Org . "8.0")
|
2013-02-23 09:27:55 +00:00
|
|
|
:group 'org-babel
|
|
|
|
:type 'string)
|
2010-07-04 16:48:12 +00:00
|
|
|
|
2013-11-15 05:22:36 +00:00
|
|
|
(defcustom org-babel-python-mode
|
|
|
|
(if (or (featurep 'xemacs) (featurep 'python-mode)) 'python-mode 'python)
|
2011-01-20 15:05:22 +00:00
|
|
|
"Preferred python mode for use in running python interactively.
|
2013-02-23 09:27:55 +00:00
|
|
|
This will typically be either 'python or 'python-mode."
|
|
|
|
:group 'org-babel
|
2013-02-26 17:21:28 +00:00
|
|
|
:version "24.4"
|
|
|
|
:package-version '(Org . "8.0")
|
2013-11-14 13:05:18 +00:00
|
|
|
:type 'symbol)
|
2010-07-09 17:58:12 +00:00
|
|
|
|
2010-10-13 04:59:24 +00:00
|
|
|
(defvar org-src-preserve-indentation)
|
2010-04-16 05:14:10 +00:00
|
|
|
|
2012-10-31 00:04:41 +00:00
|
|
|
(defcustom org-babel-python-hline-to "None"
|
2012-12-07 20:05:52 +00:00
|
|
|
"Replace hlines in incoming tables with this when translating to python."
|
|
|
|
:group 'org-babel
|
Add :version and :package-version
* ox.el (org-export-snippet-translation-alist)
(org-export-coding-system, org-export-in-background)
(org-export-async-init-file, org-export-invisible-backends)
(org-export-dispatch-use-expert-ui):
* ox-texinfo.el (org-texinfo-filename, org-texinfo-classes)
(org-texinfo-format-headline-function)
(org-texinfo-node-description-column)
(org-texinfo-active-timestamp-format)
(org-texinfo-link-with-unknown-path-format)
(org-texinfo-tables-verbatim)
(org-texinfo-table-scientific-notation)
(org-texinfo-text-markup-alist)
(org-texinfo-format-drawer-function)
(org-texinfo-format-inlinetask-function)
(org-texinfo-info-process):
* ox-man.el (org-man-tables-centered)
(org-man-table-scientific-notation)
(org-man-source-highlight, org-man-source-highlight-langs)
(org-man-pdf-process, org-man-logfiles-extensions):
* ox-html.el (org-html-allow-name-attribute-in-anchors)
(org-html-coding-system, org-html-divs):
* ox-ascii.el (org-ascii-text-width)
(org-ascii-headline-spacing, org-ascii-indented-line-width)
(org-ascii-paragraph-spacing, org-ascii-charset)
(org-ascii-underline, org-ascii-bullets)
(org-ascii-links-to-notes)
(org-ascii-table-keep-all-vertical-lines)
(org-ascii-table-widen-columns)
(org-ascii-table-use-ascii-art)
(org-ascii-format-drawer-function)
(org-ascii-format-inlinetask-function):
* org.el (org-modules, org-export-backends)
(org-highlight-latex-and-related, orgstruct-setup-hook):
* org-attach.el (org-attach-git-annex-cutoff):
* org-archive.el (org-archive-file-header-format):
* org-agenda.el (org-agenda-todo-ignore-time-comparison-use-seconds):
* ob-python.el (org-babel-python-hline-to)
(org-babel-python-None-to):
* ob-ditaa.el (org-ditaa-eps-jar-path):
* ob-core.el (org-babel-results-keyword): Add :version and
:package-version.
* ox-ascii.el: Use utf-8-emacs as the file coding system.
2013-03-05 15:34:16 +00:00
|
|
|
:version "24.4"
|
|
|
|
:package-version '(Org . "8.0")
|
2012-12-07 20:05:52 +00:00
|
|
|
:type 'string)
|
2012-10-31 00:04:41 +00:00
|
|
|
|
|
|
|
(defcustom org-babel-python-None-to 'hline
|
2012-12-07 20:05:52 +00:00
|
|
|
"Replace 'None' in python tables with this before returning."
|
|
|
|
:group 'org-babel
|
Add :version and :package-version
* ox.el (org-export-snippet-translation-alist)
(org-export-coding-system, org-export-in-background)
(org-export-async-init-file, org-export-invisible-backends)
(org-export-dispatch-use-expert-ui):
* ox-texinfo.el (org-texinfo-filename, org-texinfo-classes)
(org-texinfo-format-headline-function)
(org-texinfo-node-description-column)
(org-texinfo-active-timestamp-format)
(org-texinfo-link-with-unknown-path-format)
(org-texinfo-tables-verbatim)
(org-texinfo-table-scientific-notation)
(org-texinfo-text-markup-alist)
(org-texinfo-format-drawer-function)
(org-texinfo-format-inlinetask-function)
(org-texinfo-info-process):
* ox-man.el (org-man-tables-centered)
(org-man-table-scientific-notation)
(org-man-source-highlight, org-man-source-highlight-langs)
(org-man-pdf-process, org-man-logfiles-extensions):
* ox-html.el (org-html-allow-name-attribute-in-anchors)
(org-html-coding-system, org-html-divs):
* ox-ascii.el (org-ascii-text-width)
(org-ascii-headline-spacing, org-ascii-indented-line-width)
(org-ascii-paragraph-spacing, org-ascii-charset)
(org-ascii-underline, org-ascii-bullets)
(org-ascii-links-to-notes)
(org-ascii-table-keep-all-vertical-lines)
(org-ascii-table-widen-columns)
(org-ascii-table-use-ascii-art)
(org-ascii-format-drawer-function)
(org-ascii-format-inlinetask-function):
* org.el (org-modules, org-export-backends)
(org-highlight-latex-and-related, orgstruct-setup-hook):
* org-attach.el (org-attach-git-annex-cutoff):
* org-archive.el (org-archive-file-header-format):
* org-agenda.el (org-agenda-todo-ignore-time-comparison-use-seconds):
* ob-python.el (org-babel-python-hline-to)
(org-babel-python-None-to):
* ob-ditaa.el (org-ditaa-eps-jar-path):
* ob-core.el (org-babel-results-keyword): Add :version and
:package-version.
* ox-ascii.el: Use utf-8-emacs as the file coding system.
2013-03-05 15:34:16 +00:00
|
|
|
:version "24.4"
|
|
|
|
:package-version '(Org . "8.0")
|
2013-11-14 13:05:18 +00:00
|
|
|
:type 'symbol)
|
2012-10-31 00:04:41 +00:00
|
|
|
|
2009-07-08 04:13:07 +00:00
|
|
|
(defun org-babel-execute:python (body params)
|
2010-07-13 23:20:08 +00:00
|
|
|
"Execute a block of Python code with Babel.
|
|
|
|
This function is called by `org-babel-execute-src-block'."
|
2010-10-21 11:52:24 +00:00
|
|
|
(let* ((session (org-babel-python-initiate-session
|
|
|
|
(cdr (assoc :session params))))
|
|
|
|
(result-params (cdr (assoc :result-params params)))
|
|
|
|
(result-type (cdr (assoc :result-type params)))
|
2010-11-27 23:59:51 +00:00
|
|
|
(return-val (when (and (eq result-type 'value) (not session))
|
|
|
|
(cdr (assoc :return params))))
|
2010-12-03 14:29:28 +00:00
|
|
|
(preamble (cdr (assoc :preamble params)))
|
2010-10-21 11:28:19 +00:00
|
|
|
(full-body
|
|
|
|
(org-babel-expand-body:generic
|
2012-04-23 15:39:28 +00:00
|
|
|
(concat body (if return-val (format "\nreturn %s" return-val) ""))
|
2010-11-27 23:59:51 +00:00
|
|
|
params (org-babel-variable-assignments:python params)))
|
2010-07-03 02:21:31 +00:00
|
|
|
(result (org-babel-python-evaluate
|
2010-12-03 14:29:28 +00:00
|
|
|
session full-body result-type result-params preamble)))
|
2010-12-21 10:21:28 +00:00
|
|
|
(org-babel-reassemble-table
|
|
|
|
result
|
|
|
|
(org-babel-pick-name (cdr (assoc :colname-names params))
|
|
|
|
(cdr (assoc :colnames params)))
|
|
|
|
(org-babel-pick-name (cdr (assoc :rowname-names params))
|
|
|
|
(cdr (assoc :rownames params))))))
|
2009-06-12 15:46:00 +00:00
|
|
|
|
2009-06-14 18:34:06 +00:00
|
|
|
(defun org-babel-prep-session:python (session params)
|
2010-10-21 11:28:19 +00:00
|
|
|
"Prepare SESSION according to the header arguments in PARAMS.
|
|
|
|
VARS contains resolved variable references"
|
2009-06-14 18:34:06 +00:00
|
|
|
(let* ((session (org-babel-python-initiate-session session))
|
2010-10-21 11:28:19 +00:00
|
|
|
(var-lines
|
|
|
|
(org-babel-variable-assignments:python params)))
|
2009-06-14 18:34:06 +00:00
|
|
|
(org-babel-comint-in-buffer session
|
|
|
|
(mapc (lambda (var)
|
Xemacs incompatibilities
Carsten Dominik <carsten.dominik@gmail.com> writes:
> On May 17, 2010, at 4:39 PM, Michael Sperber wrote:
>
>> In particular, fixing the require won't be enough: org-babel-python.el
>> uses `run-python' and interacts with the inferior Python, whereas
>> python-mode.el defines `py-shell'.
>>
>> Should I try to abstract over the differences?
>
> Yes, this would be much appreciated. (I think, Eric or Dan?)
OK, I've attached a patch that makes `org-babel-python' work on XEmacs.
Most of the issues are pure XEmacs issues. Notes:
- XEmacs doesn't have [[:digit:]] - I hope to rectify this in the
future, but it seems there's no downside in this particular case to
replacing by [0-9].
- XEmacs doesn't have `move-end-of-line', but does have `end-of-line'.
I don't understand the intent of having both of these, but the code
seems fine with `end-of-line'.
- It seems there are way too few `require's throughout org-babel. I
don't know if it's OK to add the ones I needed.
- `org-babel-python-evaluate' looked broken as-is: It doesn't use the
`body' argument properly, the result is (I think) processed in the
wrong order and not properly split into lines. I've fixed all these,
but a review is probably in order.
2010-05-24 19:22:50 +00:00
|
|
|
(end-of-line 1) (insert var) (comint-send-input)
|
2010-01-11 17:14:30 +00:00
|
|
|
(org-babel-comint-wait-for-output session)) var-lines))
|
|
|
|
session))
|
|
|
|
|
|
|
|
(defun org-babel-load-session:python (session body params)
|
|
|
|
"Load BODY into SESSION."
|
|
|
|
(save-window-excursion
|
|
|
|
(let ((buffer (org-babel-prep-session:python session params)))
|
|
|
|
(with-current-buffer buffer
|
|
|
|
(goto-char (process-mark (get-buffer-process (current-buffer))))
|
|
|
|
(insert (org-babel-chomp body)))
|
|
|
|
buffer)))
|
2009-06-14 18:34:06 +00:00
|
|
|
|
|
|
|
;; helper functions
|
|
|
|
|
2010-10-21 11:28:19 +00:00
|
|
|
(defun org-babel-variable-assignments:python (params)
|
2012-09-28 15:47:48 +00:00
|
|
|
"Return a list of Python statements assigning the block's variables."
|
2010-10-14 20:05:02 +00:00
|
|
|
(mapcar
|
|
|
|
(lambda (pair)
|
|
|
|
(format "%s=%s"
|
|
|
|
(car pair)
|
|
|
|
(org-babel-python-var-to-python (cdr pair))))
|
2010-10-16 03:35:45 +00:00
|
|
|
(mapcar #'cdr (org-babel-get-header params :var))))
|
2010-10-14 20:05:02 +00:00
|
|
|
|
2009-06-12 15:46:00 +00:00
|
|
|
(defun org-babel-python-var-to-python (var)
|
2010-07-13 23:20:08 +00:00
|
|
|
"Convert an elisp value to a python variable.
|
|
|
|
Convert an elisp value, VAR, into a string of python source code
|
|
|
|
specifying a variable of the same value."
|
2009-06-12 15:46:00 +00:00
|
|
|
(if (listp var)
|
|
|
|
(concat "[" (mapconcat #'org-babel-python-var-to-python var ", ") "]")
|
2010-07-14 18:31:38 +00:00
|
|
|
(if (equal var 'hline)
|
2012-10-31 00:04:41 +00:00
|
|
|
org-babel-python-hline-to
|
2010-07-14 18:31:38 +00:00
|
|
|
(format
|
|
|
|
(if (and (stringp var) (string-match "[\n\r]" var)) "\"\"%S\"\"" "%S")
|
|
|
|
var))))
|
2009-06-12 15:46:00 +00:00
|
|
|
|
2009-07-05 23:55:54 +00:00
|
|
|
(defun org-babel-python-table-or-string (results)
|
2010-07-13 23:20:08 +00:00
|
|
|
"Convert RESULTS into an appropriate elisp value.
|
|
|
|
If the results look like a list or tuple, then convert them into an
|
2009-06-12 15:46:00 +00:00
|
|
|
Emacs-lisp table, otherwise return the results as a string."
|
Backport changes from Emacs revs 115081 and 115082
2013-11-12 Stefan Monnier <monnier@iro.umontreal.ca>
Address some byte-compiler warnings.
* ob-abc.el (org-babel-expand-body:abc): Use dolist.
(org-babel-execute:abc): Fix regexp quoting.
* ob-calc.el (org--var-syms): Rename from `var-syms'.
* ob-lilypond.el (ly-compile-lilyfile): Remove redundant let-binding.
* ob-table.el (sbe): Move debug declaration.
* org-clock.el (org--msg-extra): Rename from `msg-extra'.
* org.el (org-version): Avoid var name starting with _.
(org-inhibit-startup, org-called-with-limited-levels)
(org-link-search-inhibit-query, org-time-was-given)
(org-end-time-was-given, org-def, org-defdecode, org-with-time):
* org-colview.el (org-agenda-overriding-columns-format):
* org-agenda.el (org-agenda-multi, org-depend-tag-blocked)
(org-agenda-show-log-scoped):
* ob-python.el (py-which-bufname, python-shell-buffer-name):
* ob-haskell.el (org-export-copy-to-kill-ring):
* ob-exp.el (org-link-search-inhibit-query):
* ob-R.el (ess-eval-visibly-p):
* ob-core.el (org-src-window-setup): Declare before use.
(org-babel-expand-noweb-references): Remove unused `blocks-in-buffer'.
* ox-odt.el (org-odt-hfy-face-to-css):
* org-src.el (org-src-associate-babel-session, org-src-get-lang-mode):
* org-bibtex.el (org-bibtex-get, org-bibtex-ask, org-bibtex)
(org-bibtex-check):
* ob-tangle.el (org-babel-tangle, org-babel-spec-to-string)
(org-babel-tangle-single-block, org-babel-tangle-comment-links):
* ob-table.el (sbe):
* ob-sqlite.el (org-babel-sqlite-expand-vars):
* ob-sql.el (org-babel-sql-expand-vars):
* ob-shen.el (org-babel-execute:shen):
* ob-sh.el (org-babel-execute:sh, org-babel-sh-evaluate):
* ob-scala.el (org-babel-scala-evaluate):
* ob-ruby.el (org-babel-ruby-table-or-string)
(org-babel-ruby-evaluate):
* ob-python.el (org-babel-python-table-or-string)
(org-babel-python-evaluate-external-process)
(org-babel-python-evaluate-session):
* ob-picolisp.el (org-babel-execute:picolisp):
* ob-perl.el (org-babel-perl-evaluate):
* ob-maxima.el (org-babel-execute:maxima):
* ob-lisp.el (org-babel-execute:lisp):
* ob-java.el (org-babel-execute:java):
* ob-io.el (org-babel-io-evaluate):
* ob-haskell.el (org-babel-execute:haskell):
* ob-fortran.el (org-babel-execute:fortran):
* ob-exp.el (org-babel-exp-code):
* ob-emacs-lisp.el (org-babel-execute:emacs-lisp):
* ob-ditaa.el (org-babel-execute:ditaa):
* ob-core.el (org-babel-execute-src-block, org-babel-sha1-hash)
(org-babel-parse-header-arguments, org-babel-reassemble-table)
(org-babel-goto-src-block-head, org-babel-mark-block)
(org-babel-expand-noweb-references, org-babel-script-escape)
(org-babel-process-file-name):
* ob-clojure.el (org-babel-execute:clojure):
* ob-calc.el (org-babel-execute:calc):
* ob-awk.el (org-babel-execute:awk):
* ob-abc.el (org-babel-execute:abc):
* ob-R.el (org-babel-expand-body:R):
* ob-C.el (org-babel-C-execute): Avoid deprecated ((lambda) ...).
2013-11-12 Glenn Morris <rgm@gnu.org>
* ox-html.el (org-html-scripts): Add 2013 to copyright years.
(org-html-infojs-template): Copyright holder to FSF.
2013-11-12 19:57:31 +00:00
|
|
|
(let ((res (org-babel-script-escape results)))
|
|
|
|
(if (listp res)
|
|
|
|
(mapcar (lambda (el) (if (equal el 'None)
|
|
|
|
org-babel-python-None-to el))
|
|
|
|
res)
|
|
|
|
res)))
|
2009-06-12 15:46:00 +00:00
|
|
|
|
2013-03-29 16:31:37 +00:00
|
|
|
(defvar org-babel-python-buffers '((:default . "*Python*")))
|
2009-06-12 21:48:40 +00:00
|
|
|
|
|
|
|
(defun org-babel-python-session-buffer (session)
|
2010-06-12 00:12:15 +00:00
|
|
|
"Return the buffer associated with SESSION."
|
2009-06-12 21:48:40 +00:00
|
|
|
(cdr (assoc session org-babel-python-buffers)))
|
|
|
|
|
2013-03-29 16:45:01 +00:00
|
|
|
(defun org-babel-python-with-earmufs (session)
|
|
|
|
(let ((name (if (stringp session) session (format "%s" session))))
|
|
|
|
(if (and (string= "*" (substring name 0 1))
|
|
|
|
(string= "*" (substring name (- (length name) 1))))
|
|
|
|
name
|
|
|
|
(format "*%s*" name))))
|
|
|
|
|
|
|
|
(defun org-babel-python-without-earmufs (session)
|
|
|
|
(let ((name (if (stringp session) session (format "%s" session))))
|
|
|
|
(if (and (string= "*" (substring name 0 1))
|
|
|
|
(string= "*" (substring name (- (length name) 1))))
|
|
|
|
(substring name 1 (- (length name) 1))
|
|
|
|
name)))
|
|
|
|
|
2011-03-01 07:08:36 +00:00
|
|
|
(defvar py-default-interpreter)
|
Backport changes from Emacs revs 115081 and 115082
2013-11-12 Stefan Monnier <monnier@iro.umontreal.ca>
Address some byte-compiler warnings.
* ob-abc.el (org-babel-expand-body:abc): Use dolist.
(org-babel-execute:abc): Fix regexp quoting.
* ob-calc.el (org--var-syms): Rename from `var-syms'.
* ob-lilypond.el (ly-compile-lilyfile): Remove redundant let-binding.
* ob-table.el (sbe): Move debug declaration.
* org-clock.el (org--msg-extra): Rename from `msg-extra'.
* org.el (org-version): Avoid var name starting with _.
(org-inhibit-startup, org-called-with-limited-levels)
(org-link-search-inhibit-query, org-time-was-given)
(org-end-time-was-given, org-def, org-defdecode, org-with-time):
* org-colview.el (org-agenda-overriding-columns-format):
* org-agenda.el (org-agenda-multi, org-depend-tag-blocked)
(org-agenda-show-log-scoped):
* ob-python.el (py-which-bufname, python-shell-buffer-name):
* ob-haskell.el (org-export-copy-to-kill-ring):
* ob-exp.el (org-link-search-inhibit-query):
* ob-R.el (ess-eval-visibly-p):
* ob-core.el (org-src-window-setup): Declare before use.
(org-babel-expand-noweb-references): Remove unused `blocks-in-buffer'.
* ox-odt.el (org-odt-hfy-face-to-css):
* org-src.el (org-src-associate-babel-session, org-src-get-lang-mode):
* org-bibtex.el (org-bibtex-get, org-bibtex-ask, org-bibtex)
(org-bibtex-check):
* ob-tangle.el (org-babel-tangle, org-babel-spec-to-string)
(org-babel-tangle-single-block, org-babel-tangle-comment-links):
* ob-table.el (sbe):
* ob-sqlite.el (org-babel-sqlite-expand-vars):
* ob-sql.el (org-babel-sql-expand-vars):
* ob-shen.el (org-babel-execute:shen):
* ob-sh.el (org-babel-execute:sh, org-babel-sh-evaluate):
* ob-scala.el (org-babel-scala-evaluate):
* ob-ruby.el (org-babel-ruby-table-or-string)
(org-babel-ruby-evaluate):
* ob-python.el (org-babel-python-table-or-string)
(org-babel-python-evaluate-external-process)
(org-babel-python-evaluate-session):
* ob-picolisp.el (org-babel-execute:picolisp):
* ob-perl.el (org-babel-perl-evaluate):
* ob-maxima.el (org-babel-execute:maxima):
* ob-lisp.el (org-babel-execute:lisp):
* ob-java.el (org-babel-execute:java):
* ob-io.el (org-babel-io-evaluate):
* ob-haskell.el (org-babel-execute:haskell):
* ob-fortran.el (org-babel-execute:fortran):
* ob-exp.el (org-babel-exp-code):
* ob-emacs-lisp.el (org-babel-execute:emacs-lisp):
* ob-ditaa.el (org-babel-execute:ditaa):
* ob-core.el (org-babel-execute-src-block, org-babel-sha1-hash)
(org-babel-parse-header-arguments, org-babel-reassemble-table)
(org-babel-goto-src-block-head, org-babel-mark-block)
(org-babel-expand-noweb-references, org-babel-script-escape)
(org-babel-process-file-name):
* ob-clojure.el (org-babel-execute:clojure):
* ob-calc.el (org-babel-execute:calc):
* ob-awk.el (org-babel-execute:awk):
* ob-abc.el (org-babel-execute:abc):
* ob-R.el (org-babel-expand-body:R):
* ob-C.el (org-babel-C-execute): Avoid deprecated ((lambda) ...).
2013-11-12 Glenn Morris <rgm@gnu.org>
* ox-html.el (org-html-scripts): Add 2013 to copyright years.
(org-html-infojs-template): Copyright holder to FSF.
2013-11-12 19:57:31 +00:00
|
|
|
(defvar py-which-bufname)
|
|
|
|
(defvar python-shell-buffer-name)
|
2009-06-14 18:34:06 +00:00
|
|
|
(defun org-babel-python-initiate-session-by-key (&optional session)
|
2010-07-13 23:20:08 +00:00
|
|
|
"Initiate a python session.
|
|
|
|
If there is not a current inferior-process-buffer in SESSION
|
2009-06-12 15:46:00 +00:00
|
|
|
then create. Return the initialized session."
|
2010-07-09 17:58:12 +00:00
|
|
|
(require org-babel-python-mode)
|
2009-06-12 21:48:40 +00:00
|
|
|
(save-window-excursion
|
|
|
|
(let* ((session (if session (intern session) :default))
|
2013-08-12 19:12:16 +00:00
|
|
|
(python-buffer (org-babel-python-session-buffer session))
|
|
|
|
(cmd (if (member system-type '(cygwin windows-nt ms-dos))
|
|
|
|
(concat org-babel-python-command " -i")
|
|
|
|
org-babel-python-command)))
|
Xemacs incompatibilities
Carsten Dominik <carsten.dominik@gmail.com> writes:
> On May 17, 2010, at 4:39 PM, Michael Sperber wrote:
>
>> In particular, fixing the require won't be enough: org-babel-python.el
>> uses `run-python' and interacts with the inferior Python, whereas
>> python-mode.el defines `py-shell'.
>>
>> Should I try to abstract over the differences?
>
> Yes, this would be much appreciated. (I think, Eric or Dan?)
OK, I've attached a patch that makes `org-babel-python' work on XEmacs.
Most of the issues are pure XEmacs issues. Notes:
- XEmacs doesn't have [[:digit:]] - I hope to rectify this in the
future, but it seems there's no downside in this particular case to
replacing by [0-9].
- XEmacs doesn't have `move-end-of-line', but does have `end-of-line'.
I don't understand the intent of having both of these, but the code
seems fine with `end-of-line'.
- It seems there are way too few `require's throughout org-babel. I
don't know if it's OK to add the ones I needed.
- `org-babel-python-evaluate' looked broken as-is: It doesn't use the
`body' argument properly, the result is (I think) processed in the
wrong order and not properly split into lines. I've fixed all these,
but a review is probably in order.
2010-05-24 19:22:50 +00:00
|
|
|
(cond
|
2010-08-16 15:08:37 +00:00
|
|
|
((and (eq 'python org-babel-python-mode)
|
2010-07-09 17:58:12 +00:00
|
|
|
(fboundp 'run-python)) ; python.el
|
2013-08-12 19:12:16 +00:00
|
|
|
(if (not (version< "24.1" emacs-version))
|
|
|
|
(run-python cmd)
|
|
|
|
(unless python-buffer
|
|
|
|
(setq python-buffer (org-babel-python-with-earmufs session)))
|
|
|
|
(let ((python-shell-buffer-name
|
|
|
|
(org-babel-python-without-earmufs python-buffer)))
|
|
|
|
(run-python cmd))))
|
2010-08-16 15:08:37 +00:00
|
|
|
((and (eq 'python-mode org-babel-python-mode)
|
2010-07-09 17:58:12 +00:00
|
|
|
(fboundp 'py-shell)) ; python-mode.el
|
2010-12-14 01:45:26 +00:00
|
|
|
;; Make sure that py-which-bufname is initialized, as otherwise
|
|
|
|
;; it will be overwritten the first time a Python buffer is
|
|
|
|
;; created.
|
2011-01-14 21:53:28 +00:00
|
|
|
(py-toggle-shells py-default-interpreter)
|
Xemacs incompatibilities
Carsten Dominik <carsten.dominik@gmail.com> writes:
> On May 17, 2010, at 4:39 PM, Michael Sperber wrote:
>
>> In particular, fixing the require won't be enough: org-babel-python.el
>> uses `run-python' and interacts with the inferior Python, whereas
>> python-mode.el defines `py-shell'.
>>
>> Should I try to abstract over the differences?
>
> Yes, this would be much appreciated. (I think, Eric or Dan?)
OK, I've attached a patch that makes `org-babel-python' work on XEmacs.
Most of the issues are pure XEmacs issues. Notes:
- XEmacs doesn't have [[:digit:]] - I hope to rectify this in the
future, but it seems there's no downside in this particular case to
replacing by [0-9].
- XEmacs doesn't have `move-end-of-line', but does have `end-of-line'.
I don't understand the intent of having both of these, but the code
seems fine with `end-of-line'.
- It seems there are way too few `require's throughout org-babel. I
don't know if it's OK to add the ones I needed.
- `org-babel-python-evaluate' looked broken as-is: It doesn't use the
`body' argument properly, the result is (I think) processed in the
wrong order and not properly split into lines. I've fixed all these,
but a review is probably in order.
2010-05-24 19:22:50 +00:00
|
|
|
;; `py-shell' creates a buffer whose name is the value of
|
|
|
|
;; `py-which-bufname' with '*'s at the beginning and end
|
2011-01-14 21:53:28 +00:00
|
|
|
(let* ((bufname (if (and python-buffer (buffer-live-p python-buffer))
|
2010-07-04 16:48:12 +00:00
|
|
|
(replace-regexp-in-string ;; zap surrounding *
|
|
|
|
"^\\*\\([^*]+\\)\\*$" "\\1" python-buffer)
|
Xemacs incompatibilities
Carsten Dominik <carsten.dominik@gmail.com> writes:
> On May 17, 2010, at 4:39 PM, Michael Sperber wrote:
>
>> In particular, fixing the require won't be enough: org-babel-python.el
>> uses `run-python' and interacts with the inferior Python, whereas
>> python-mode.el defines `py-shell'.
>>
>> Should I try to abstract over the differences?
>
> Yes, this would be much appreciated. (I think, Eric or Dan?)
OK, I've attached a patch that makes `org-babel-python' work on XEmacs.
Most of the issues are pure XEmacs issues. Notes:
- XEmacs doesn't have [[:digit:]] - I hope to rectify this in the
future, but it seems there's no downside in this particular case to
replacing by [0-9].
- XEmacs doesn't have `move-end-of-line', but does have `end-of-line'.
I don't understand the intent of having both of these, but the code
seems fine with `end-of-line'.
- It seems there are way too few `require's throughout org-babel. I
don't know if it's OK to add the ones I needed.
- `org-babel-python-evaluate' looked broken as-is: It doesn't use the
`body' argument properly, the result is (I think) processed in the
wrong order and not properly split into lines. I've fixed all these,
but a review is probably in order.
2010-05-24 19:22:50 +00:00
|
|
|
(concat "Python-" (symbol-name session))))
|
2010-07-04 16:48:12 +00:00
|
|
|
(py-which-bufname bufname))
|
Xemacs incompatibilities
Carsten Dominik <carsten.dominik@gmail.com> writes:
> On May 17, 2010, at 4:39 PM, Michael Sperber wrote:
>
>> In particular, fixing the require won't be enough: org-babel-python.el
>> uses `run-python' and interacts with the inferior Python, whereas
>> python-mode.el defines `py-shell'.
>>
>> Should I try to abstract over the differences?
>
> Yes, this would be much appreciated. (I think, Eric or Dan?)
OK, I've attached a patch that makes `org-babel-python' work on XEmacs.
Most of the issues are pure XEmacs issues. Notes:
- XEmacs doesn't have [[:digit:]] - I hope to rectify this in the
future, but it seems there's no downside in this particular case to
replacing by [0-9].
- XEmacs doesn't have `move-end-of-line', but does have `end-of-line'.
I don't understand the intent of having both of these, but the code
seems fine with `end-of-line'.
- It seems there are way too few `require's throughout org-babel. I
don't know if it's OK to add the ones I needed.
- `org-babel-python-evaluate' looked broken as-is: It doesn't use the
`body' argument properly, the result is (I think) processed in the
wrong order and not properly split into lines. I've fixed all these,
but a review is probably in order.
2010-05-24 19:22:50 +00:00
|
|
|
(py-shell)
|
2013-03-29 21:12:51 +00:00
|
|
|
(setq python-buffer (org-babel-python-with-earmufs bufname))))
|
Xemacs incompatibilities
Carsten Dominik <carsten.dominik@gmail.com> writes:
> On May 17, 2010, at 4:39 PM, Michael Sperber wrote:
>
>> In particular, fixing the require won't be enough: org-babel-python.el
>> uses `run-python' and interacts with the inferior Python, whereas
>> python-mode.el defines `py-shell'.
>>
>> Should I try to abstract over the differences?
>
> Yes, this would be much appreciated. (I think, Eric or Dan?)
OK, I've attached a patch that makes `org-babel-python' work on XEmacs.
Most of the issues are pure XEmacs issues. Notes:
- XEmacs doesn't have [[:digit:]] - I hope to rectify this in the
future, but it seems there's no downside in this particular case to
replacing by [0-9].
- XEmacs doesn't have `move-end-of-line', but does have `end-of-line'.
I don't understand the intent of having both of these, but the code
seems fine with `end-of-line'.
- It seems there are way too few `require's throughout org-babel. I
don't know if it's OK to add the ones I needed.
- `org-babel-python-evaluate' looked broken as-is: It doesn't use the
`body' argument properly, the result is (I think) processed in the
wrong order and not properly split into lines. I've fixed all these,
but a review is probably in order.
2010-05-24 19:22:50 +00:00
|
|
|
(t
|
2012-09-28 15:47:48 +00:00
|
|
|
(error "No function available for running an inferior Python")))
|
2010-07-04 16:48:12 +00:00
|
|
|
(setq org-babel-python-buffers
|
|
|
|
(cons (cons session python-buffer)
|
|
|
|
(assq-delete-all session org-babel-python-buffers)))
|
2009-06-12 21:48:40 +00:00
|
|
|
session)))
|
2009-06-12 15:46:00 +00:00
|
|
|
|
2010-03-13 17:59:41 +00:00
|
|
|
(defun org-babel-python-initiate-session (&optional session params)
|
2010-06-12 00:12:15 +00:00
|
|
|
"Create a session named SESSION according to PARAMS."
|
2009-06-15 18:14:32 +00:00
|
|
|
(unless (string= session "none")
|
2010-07-04 16:48:12 +00:00
|
|
|
(org-babel-python-session-buffer
|
|
|
|
(org-babel-python-initiate-session-by-key session))))
|
|
|
|
|
2009-06-12 15:46:00 +00:00
|
|
|
(defvar org-babel-python-eoe-indicator "'org_babel_python_eoe'"
|
2010-07-13 23:20:08 +00:00
|
|
|
"A string to indicate that evaluation has completed.")
|
2009-06-15 18:14:32 +00:00
|
|
|
(defvar org-babel-python-wrapper-method
|
|
|
|
"
|
|
|
|
def main():
|
|
|
|
%s
|
|
|
|
|
|
|
|
open('%s', 'w').write( str(main()) )")
|
2009-10-18 19:14:39 +00:00
|
|
|
(defvar org-babel-python-pp-wrapper-method
|
|
|
|
"
|
|
|
|
import pprint
|
|
|
|
def main():
|
|
|
|
%s
|
|
|
|
|
|
|
|
open('%s', 'w').write( pprint.pformat(main()) )")
|
2009-06-12 15:46:00 +00:00
|
|
|
|
2010-07-03 02:21:31 +00:00
|
|
|
(defun org-babel-python-evaluate
|
2010-12-03 14:29:28 +00:00
|
|
|
(session body &optional result-type result-params preamble)
|
2012-09-28 15:47:48 +00:00
|
|
|
"Evaluate BODY as Python code."
|
2010-09-08 01:58:58 +00:00
|
|
|
(if session
|
|
|
|
(org-babel-python-evaluate-session
|
|
|
|
session body result-type result-params)
|
|
|
|
(org-babel-python-evaluate-external-process
|
2010-12-03 14:29:28 +00:00
|
|
|
body result-type result-params preamble)))
|
2010-09-08 01:58:58 +00:00
|
|
|
|
|
|
|
(defun org-babel-python-evaluate-external-process
|
2010-12-03 14:29:28 +00:00
|
|
|
(body &optional result-type result-params preamble)
|
2010-09-08 01:58:58 +00:00
|
|
|
"Evaluate BODY in external python process.
|
|
|
|
If RESULT-TYPE equals 'output then return standard output as a
|
2012-08-11 17:10:44 +00:00
|
|
|
string. If RESULT-TYPE equals 'value then return the value of the
|
2010-09-08 01:58:58 +00:00
|
|
|
last statement in BODY, as elisp."
|
Backport changes from Emacs revs 115081 and 115082
2013-11-12 Stefan Monnier <monnier@iro.umontreal.ca>
Address some byte-compiler warnings.
* ob-abc.el (org-babel-expand-body:abc): Use dolist.
(org-babel-execute:abc): Fix regexp quoting.
* ob-calc.el (org--var-syms): Rename from `var-syms'.
* ob-lilypond.el (ly-compile-lilyfile): Remove redundant let-binding.
* ob-table.el (sbe): Move debug declaration.
* org-clock.el (org--msg-extra): Rename from `msg-extra'.
* org.el (org-version): Avoid var name starting with _.
(org-inhibit-startup, org-called-with-limited-levels)
(org-link-search-inhibit-query, org-time-was-given)
(org-end-time-was-given, org-def, org-defdecode, org-with-time):
* org-colview.el (org-agenda-overriding-columns-format):
* org-agenda.el (org-agenda-multi, org-depend-tag-blocked)
(org-agenda-show-log-scoped):
* ob-python.el (py-which-bufname, python-shell-buffer-name):
* ob-haskell.el (org-export-copy-to-kill-ring):
* ob-exp.el (org-link-search-inhibit-query):
* ob-R.el (ess-eval-visibly-p):
* ob-core.el (org-src-window-setup): Declare before use.
(org-babel-expand-noweb-references): Remove unused `blocks-in-buffer'.
* ox-odt.el (org-odt-hfy-face-to-css):
* org-src.el (org-src-associate-babel-session, org-src-get-lang-mode):
* org-bibtex.el (org-bibtex-get, org-bibtex-ask, org-bibtex)
(org-bibtex-check):
* ob-tangle.el (org-babel-tangle, org-babel-spec-to-string)
(org-babel-tangle-single-block, org-babel-tangle-comment-links):
* ob-table.el (sbe):
* ob-sqlite.el (org-babel-sqlite-expand-vars):
* ob-sql.el (org-babel-sql-expand-vars):
* ob-shen.el (org-babel-execute:shen):
* ob-sh.el (org-babel-execute:sh, org-babel-sh-evaluate):
* ob-scala.el (org-babel-scala-evaluate):
* ob-ruby.el (org-babel-ruby-table-or-string)
(org-babel-ruby-evaluate):
* ob-python.el (org-babel-python-table-or-string)
(org-babel-python-evaluate-external-process)
(org-babel-python-evaluate-session):
* ob-picolisp.el (org-babel-execute:picolisp):
* ob-perl.el (org-babel-perl-evaluate):
* ob-maxima.el (org-babel-execute:maxima):
* ob-lisp.el (org-babel-execute:lisp):
* ob-java.el (org-babel-execute:java):
* ob-io.el (org-babel-io-evaluate):
* ob-haskell.el (org-babel-execute:haskell):
* ob-fortran.el (org-babel-execute:fortran):
* ob-exp.el (org-babel-exp-code):
* ob-emacs-lisp.el (org-babel-execute:emacs-lisp):
* ob-ditaa.el (org-babel-execute:ditaa):
* ob-core.el (org-babel-execute-src-block, org-babel-sha1-hash)
(org-babel-parse-header-arguments, org-babel-reassemble-table)
(org-babel-goto-src-block-head, org-babel-mark-block)
(org-babel-expand-noweb-references, org-babel-script-escape)
(org-babel-process-file-name):
* ob-clojure.el (org-babel-execute:clojure):
* ob-calc.el (org-babel-execute:calc):
* ob-awk.el (org-babel-execute:awk):
* ob-abc.el (org-babel-execute:abc):
* ob-R.el (org-babel-expand-body:R):
* ob-C.el (org-babel-C-execute): Avoid deprecated ((lambda) ...).
2013-11-12 Glenn Morris <rgm@gnu.org>
* ox-html.el (org-html-scripts): Add 2013 to copyright years.
(org-html-infojs-template): Copyright holder to FSF.
2013-11-12 19:57:31 +00:00
|
|
|
(let ((raw
|
|
|
|
(case result-type
|
|
|
|
(output (org-babel-eval org-babel-python-command
|
|
|
|
(concat (if preamble (concat preamble "\n"))
|
|
|
|
body)))
|
|
|
|
(value (let ((tmp-file (org-babel-temp-file "python-")))
|
|
|
|
(org-babel-eval
|
|
|
|
org-babel-python-command
|
|
|
|
(concat
|
|
|
|
(if preamble (concat preamble "\n") "")
|
|
|
|
(format
|
|
|
|
(if (member "pp" result-params)
|
|
|
|
org-babel-python-pp-wrapper-method
|
|
|
|
org-babel-python-wrapper-method)
|
|
|
|
(mapconcat
|
|
|
|
(lambda (line) (format "\t%s" line))
|
|
|
|
(split-string
|
|
|
|
(org-remove-indentation
|
|
|
|
(org-babel-trim body))
|
|
|
|
"[\r\n]") "\n")
|
|
|
|
(org-babel-process-file-name tmp-file 'noquote))))
|
|
|
|
(org-babel-eval-read-file tmp-file))))))
|
|
|
|
(org-babel-result-cond result-params
|
|
|
|
raw
|
|
|
|
(org-babel-python-table-or-string (org-babel-trim raw)))))
|
2010-09-08 01:58:58 +00:00
|
|
|
|
|
|
|
(defun org-babel-python-evaluate-session
|
Backport changes from Emacs revs 115081 and 115082
2013-11-12 Stefan Monnier <monnier@iro.umontreal.ca>
Address some byte-compiler warnings.
* ob-abc.el (org-babel-expand-body:abc): Use dolist.
(org-babel-execute:abc): Fix regexp quoting.
* ob-calc.el (org--var-syms): Rename from `var-syms'.
* ob-lilypond.el (ly-compile-lilyfile): Remove redundant let-binding.
* ob-table.el (sbe): Move debug declaration.
* org-clock.el (org--msg-extra): Rename from `msg-extra'.
* org.el (org-version): Avoid var name starting with _.
(org-inhibit-startup, org-called-with-limited-levels)
(org-link-search-inhibit-query, org-time-was-given)
(org-end-time-was-given, org-def, org-defdecode, org-with-time):
* org-colview.el (org-agenda-overriding-columns-format):
* org-agenda.el (org-agenda-multi, org-depend-tag-blocked)
(org-agenda-show-log-scoped):
* ob-python.el (py-which-bufname, python-shell-buffer-name):
* ob-haskell.el (org-export-copy-to-kill-ring):
* ob-exp.el (org-link-search-inhibit-query):
* ob-R.el (ess-eval-visibly-p):
* ob-core.el (org-src-window-setup): Declare before use.
(org-babel-expand-noweb-references): Remove unused `blocks-in-buffer'.
* ox-odt.el (org-odt-hfy-face-to-css):
* org-src.el (org-src-associate-babel-session, org-src-get-lang-mode):
* org-bibtex.el (org-bibtex-get, org-bibtex-ask, org-bibtex)
(org-bibtex-check):
* ob-tangle.el (org-babel-tangle, org-babel-spec-to-string)
(org-babel-tangle-single-block, org-babel-tangle-comment-links):
* ob-table.el (sbe):
* ob-sqlite.el (org-babel-sqlite-expand-vars):
* ob-sql.el (org-babel-sql-expand-vars):
* ob-shen.el (org-babel-execute:shen):
* ob-sh.el (org-babel-execute:sh, org-babel-sh-evaluate):
* ob-scala.el (org-babel-scala-evaluate):
* ob-ruby.el (org-babel-ruby-table-or-string)
(org-babel-ruby-evaluate):
* ob-python.el (org-babel-python-table-or-string)
(org-babel-python-evaluate-external-process)
(org-babel-python-evaluate-session):
* ob-picolisp.el (org-babel-execute:picolisp):
* ob-perl.el (org-babel-perl-evaluate):
* ob-maxima.el (org-babel-execute:maxima):
* ob-lisp.el (org-babel-execute:lisp):
* ob-java.el (org-babel-execute:java):
* ob-io.el (org-babel-io-evaluate):
* ob-haskell.el (org-babel-execute:haskell):
* ob-fortran.el (org-babel-execute:fortran):
* ob-exp.el (org-babel-exp-code):
* ob-emacs-lisp.el (org-babel-execute:emacs-lisp):
* ob-ditaa.el (org-babel-execute:ditaa):
* ob-core.el (org-babel-execute-src-block, org-babel-sha1-hash)
(org-babel-parse-header-arguments, org-babel-reassemble-table)
(org-babel-goto-src-block-head, org-babel-mark-block)
(org-babel-expand-noweb-references, org-babel-script-escape)
(org-babel-process-file-name):
* ob-clojure.el (org-babel-execute:clojure):
* ob-calc.el (org-babel-execute:calc):
* ob-awk.el (org-babel-execute:awk):
* ob-abc.el (org-babel-execute:abc):
* ob-R.el (org-babel-expand-body:R):
* ob-C.el (org-babel-C-execute): Avoid deprecated ((lambda) ...).
2013-11-12 Glenn Morris <rgm@gnu.org>
* ox-html.el (org-html-scripts): Add 2013 to copyright years.
(org-html-infojs-template): Copyright holder to FSF.
2013-11-12 19:57:31 +00:00
|
|
|
(session body &optional result-type result-params)
|
2010-09-08 01:58:58 +00:00
|
|
|
"Pass BODY to the Python process in SESSION.
|
|
|
|
If RESULT-TYPE equals 'output then return standard output as a
|
2012-08-11 17:10:44 +00:00
|
|
|
string. If RESULT-TYPE equals 'value then return the value of the
|
2010-09-08 01:58:58 +00:00
|
|
|
last statement in BODY, as elisp."
|
2012-08-09 14:13:18 +00:00
|
|
|
(let* ((send-wait (lambda () (comint-send-input nil t) (sleep-for 0 5)))
|
2011-07-03 15:10:43 +00:00
|
|
|
(dump-last-value
|
2012-08-09 14:13:18 +00:00
|
|
|
(lambda
|
|
|
|
(tmp-file pp)
|
|
|
|
(mapc
|
|
|
|
(lambda (statement) (insert statement) (funcall send-wait))
|
|
|
|
(if pp
|
|
|
|
(list
|
|
|
|
"import pprint"
|
|
|
|
(format "open('%s', 'w').write(pprint.pformat(_))"
|
|
|
|
(org-babel-process-file-name tmp-file 'noquote)))
|
|
|
|
(list (format "open('%s', 'w').write(str(_))"
|
Backport changes from Emacs revs 115081 and 115082
2013-11-12 Stefan Monnier <monnier@iro.umontreal.ca>
Address some byte-compiler warnings.
* ob-abc.el (org-babel-expand-body:abc): Use dolist.
(org-babel-execute:abc): Fix regexp quoting.
* ob-calc.el (org--var-syms): Rename from `var-syms'.
* ob-lilypond.el (ly-compile-lilyfile): Remove redundant let-binding.
* ob-table.el (sbe): Move debug declaration.
* org-clock.el (org--msg-extra): Rename from `msg-extra'.
* org.el (org-version): Avoid var name starting with _.
(org-inhibit-startup, org-called-with-limited-levels)
(org-link-search-inhibit-query, org-time-was-given)
(org-end-time-was-given, org-def, org-defdecode, org-with-time):
* org-colview.el (org-agenda-overriding-columns-format):
* org-agenda.el (org-agenda-multi, org-depend-tag-blocked)
(org-agenda-show-log-scoped):
* ob-python.el (py-which-bufname, python-shell-buffer-name):
* ob-haskell.el (org-export-copy-to-kill-ring):
* ob-exp.el (org-link-search-inhibit-query):
* ob-R.el (ess-eval-visibly-p):
* ob-core.el (org-src-window-setup): Declare before use.
(org-babel-expand-noweb-references): Remove unused `blocks-in-buffer'.
* ox-odt.el (org-odt-hfy-face-to-css):
* org-src.el (org-src-associate-babel-session, org-src-get-lang-mode):
* org-bibtex.el (org-bibtex-get, org-bibtex-ask, org-bibtex)
(org-bibtex-check):
* ob-tangle.el (org-babel-tangle, org-babel-spec-to-string)
(org-babel-tangle-single-block, org-babel-tangle-comment-links):
* ob-table.el (sbe):
* ob-sqlite.el (org-babel-sqlite-expand-vars):
* ob-sql.el (org-babel-sql-expand-vars):
* ob-shen.el (org-babel-execute:shen):
* ob-sh.el (org-babel-execute:sh, org-babel-sh-evaluate):
* ob-scala.el (org-babel-scala-evaluate):
* ob-ruby.el (org-babel-ruby-table-or-string)
(org-babel-ruby-evaluate):
* ob-python.el (org-babel-python-table-or-string)
(org-babel-python-evaluate-external-process)
(org-babel-python-evaluate-session):
* ob-picolisp.el (org-babel-execute:picolisp):
* ob-perl.el (org-babel-perl-evaluate):
* ob-maxima.el (org-babel-execute:maxima):
* ob-lisp.el (org-babel-execute:lisp):
* ob-java.el (org-babel-execute:java):
* ob-io.el (org-babel-io-evaluate):
* ob-haskell.el (org-babel-execute:haskell):
* ob-fortran.el (org-babel-execute:fortran):
* ob-exp.el (org-babel-exp-code):
* ob-emacs-lisp.el (org-babel-execute:emacs-lisp):
* ob-ditaa.el (org-babel-execute:ditaa):
* ob-core.el (org-babel-execute-src-block, org-babel-sha1-hash)
(org-babel-parse-header-arguments, org-babel-reassemble-table)
(org-babel-goto-src-block-head, org-babel-mark-block)
(org-babel-expand-noweb-references, org-babel-script-escape)
(org-babel-process-file-name):
* ob-clojure.el (org-babel-execute:clojure):
* ob-calc.el (org-babel-execute:calc):
* ob-awk.el (org-babel-execute:awk):
* ob-abc.el (org-babel-execute:abc):
* ob-R.el (org-babel-expand-body:R):
* ob-C.el (org-babel-C-execute): Avoid deprecated ((lambda) ...).
2013-11-12 Glenn Morris <rgm@gnu.org>
* ox-html.el (org-html-scripts): Add 2013 to copyright years.
(org-html-infojs-template): Copyright holder to FSF.
2013-11-12 19:57:31 +00:00
|
|
|
(org-babel-process-file-name tmp-file
|
|
|
|
'noquote)))))))
|
2012-08-09 14:13:18 +00:00
|
|
|
(input-body (lambda (body)
|
|
|
|
(mapc (lambda (line) (insert line) (funcall send-wait))
|
|
|
|
(split-string body "[\r\n]"))
|
Backport changes from Emacs revs 115081 and 115082
2013-11-12 Stefan Monnier <monnier@iro.umontreal.ca>
Address some byte-compiler warnings.
* ob-abc.el (org-babel-expand-body:abc): Use dolist.
(org-babel-execute:abc): Fix regexp quoting.
* ob-calc.el (org--var-syms): Rename from `var-syms'.
* ob-lilypond.el (ly-compile-lilyfile): Remove redundant let-binding.
* ob-table.el (sbe): Move debug declaration.
* org-clock.el (org--msg-extra): Rename from `msg-extra'.
* org.el (org-version): Avoid var name starting with _.
(org-inhibit-startup, org-called-with-limited-levels)
(org-link-search-inhibit-query, org-time-was-given)
(org-end-time-was-given, org-def, org-defdecode, org-with-time):
* org-colview.el (org-agenda-overriding-columns-format):
* org-agenda.el (org-agenda-multi, org-depend-tag-blocked)
(org-agenda-show-log-scoped):
* ob-python.el (py-which-bufname, python-shell-buffer-name):
* ob-haskell.el (org-export-copy-to-kill-ring):
* ob-exp.el (org-link-search-inhibit-query):
* ob-R.el (ess-eval-visibly-p):
* ob-core.el (org-src-window-setup): Declare before use.
(org-babel-expand-noweb-references): Remove unused `blocks-in-buffer'.
* ox-odt.el (org-odt-hfy-face-to-css):
* org-src.el (org-src-associate-babel-session, org-src-get-lang-mode):
* org-bibtex.el (org-bibtex-get, org-bibtex-ask, org-bibtex)
(org-bibtex-check):
* ob-tangle.el (org-babel-tangle, org-babel-spec-to-string)
(org-babel-tangle-single-block, org-babel-tangle-comment-links):
* ob-table.el (sbe):
* ob-sqlite.el (org-babel-sqlite-expand-vars):
* ob-sql.el (org-babel-sql-expand-vars):
* ob-shen.el (org-babel-execute:shen):
* ob-sh.el (org-babel-execute:sh, org-babel-sh-evaluate):
* ob-scala.el (org-babel-scala-evaluate):
* ob-ruby.el (org-babel-ruby-table-or-string)
(org-babel-ruby-evaluate):
* ob-python.el (org-babel-python-table-or-string)
(org-babel-python-evaluate-external-process)
(org-babel-python-evaluate-session):
* ob-picolisp.el (org-babel-execute:picolisp):
* ob-perl.el (org-babel-perl-evaluate):
* ob-maxima.el (org-babel-execute:maxima):
* ob-lisp.el (org-babel-execute:lisp):
* ob-java.el (org-babel-execute:java):
* ob-io.el (org-babel-io-evaluate):
* ob-haskell.el (org-babel-execute:haskell):
* ob-fortran.el (org-babel-execute:fortran):
* ob-exp.el (org-babel-exp-code):
* ob-emacs-lisp.el (org-babel-execute:emacs-lisp):
* ob-ditaa.el (org-babel-execute:ditaa):
* ob-core.el (org-babel-execute-src-block, org-babel-sha1-hash)
(org-babel-parse-header-arguments, org-babel-reassemble-table)
(org-babel-goto-src-block-head, org-babel-mark-block)
(org-babel-expand-noweb-references, org-babel-script-escape)
(org-babel-process-file-name):
* ob-clojure.el (org-babel-execute:clojure):
* ob-calc.el (org-babel-execute:calc):
* ob-awk.el (org-babel-execute:awk):
* ob-abc.el (org-babel-execute:abc):
* ob-R.el (org-babel-expand-body:R):
* ob-C.el (org-babel-C-execute): Avoid deprecated ((lambda) ...).
2013-11-12 Glenn Morris <rgm@gnu.org>
* ox-html.el (org-html-scripts): Add 2013 to copyright years.
(org-html-infojs-template): Copyright holder to FSF.
2013-11-12 19:57:31 +00:00
|
|
|
(funcall send-wait)))
|
|
|
|
(results
|
|
|
|
(case result-type
|
|
|
|
(output
|
|
|
|
(mapconcat
|
|
|
|
#'org-babel-trim
|
|
|
|
(butlast
|
|
|
|
(org-babel-comint-with-output
|
|
|
|
(session org-babel-python-eoe-indicator t body)
|
|
|
|
(funcall input-body body)
|
|
|
|
(funcall send-wait) (funcall send-wait)
|
|
|
|
(insert org-babel-python-eoe-indicator)
|
|
|
|
(funcall send-wait))
|
|
|
|
2) "\n"))
|
|
|
|
(value
|
|
|
|
(let ((tmp-file (org-babel-temp-file "python-")))
|
|
|
|
(org-babel-comint-with-output
|
|
|
|
(session org-babel-python-eoe-indicator nil body)
|
|
|
|
(let ((comint-process-echoes nil))
|
|
|
|
(funcall input-body body)
|
|
|
|
(funcall dump-last-value tmp-file
|
|
|
|
(member "pp" result-params))
|
|
|
|
(funcall send-wait) (funcall send-wait)
|
|
|
|
(insert org-babel-python-eoe-indicator)
|
|
|
|
(funcall send-wait)))
|
|
|
|
(org-babel-eval-read-file tmp-file))))))
|
|
|
|
(unless (string= (substring org-babel-python-eoe-indicator 1 -1) results)
|
|
|
|
(org-babel-result-cond result-params
|
|
|
|
results
|
|
|
|
(org-babel-python-table-or-string results)))))
|
2009-06-12 15:46:00 +00:00
|
|
|
|
2009-06-12 23:23:28 +00:00
|
|
|
(defun org-babel-python-read-string (string)
|
2012-09-28 15:47:48 +00:00
|
|
|
"Strip 's from around Python string."
|
2010-02-19 16:34:16 +00:00
|
|
|
(if (string-match "^'\\([^\000]+\\)'$" string)
|
2009-06-12 23:23:28 +00:00
|
|
|
(match-string 1 string)
|
|
|
|
string))
|
|
|
|
|
2010-06-11 23:02:42 +00:00
|
|
|
(provide 'ob-python)
|
2010-06-25 16:32:35 +00:00
|
|
|
|
2011-08-15 18:04:38 +00:00
|
|
|
|
2010-06-25 16:32:35 +00:00
|
|
|
|
2010-06-11 23:02:42 +00:00
|
|
|
;;; ob-python.el ends here
|