From: Mark Barton <mbarton98@gmail.com>
To: "Barton, Mark" <Mark.Barton@disney.com>
Cc: 50514@debbugs.gnu.org, Lars Ingebrigtsen <larsi@gnus.org>,
Augusto Stoffel <arstoffel@gmail.com>,
Ihor Radchenko <yantar92@gmail.com>
Subject: bug#50514: 28.0.50; org inline call to python src block req C-g to break
Date: Sat, 27 Aug 2022 14:31:33 -0700 [thread overview]
Message-ID: <9CADADD8-72C0-4951-9950-AC7149B339F4@gmail.com> (raw)
In-Reply-To: <F0AA0C3B-E402-4951-BCA5-A9A120933404@disney.com>
[-- Attachment #1: Type: text/plain, Size: 2386 bytes --]
> On Aug 27, 2022, at 11:59 AM, Barton, Mark <Mark.Barton@disney.com> wrote:
>
>
>
>> On Aug 27, 2022, at 7:11 AM, Ihor Radchenko <yantar92@gmail.com> wrote:
>>
>> ---
>> lisp/ob-python.el | 8 ++++----
>> 1 file changed, 4 insertions(+), 4 deletions(-)
>>
>> diff --git a/lisp/ob-python.el b/lisp/ob-python.el
>> index 932aca08e..2ad907bd8 100644
>> --- a/lisp/ob-python.el
>> +++ b/lisp/ob-python.el
>> @@ -197,8 +197,7 @@ (defun org-babel-python-initiate-session-by-key (&optional session)
>> (setq py-buffer (org-babel-python-with-earmuffs session)))
>> (let ((python-shell-buffer-name
>> (org-babel-python-without-earmuffs py-buffer)))
>> - (run-python cmd)
>> - (sleep-for 0 10)))
>> + (run-python cmd)))
>> ((and (eq 'python-mode org-babel-python-mode)
>> (fboundp 'py-shell)) ; python-mode.el
>> (require 'python-mode)
>> @@ -225,8 +224,9 @@ (defun org-babel-python-initiate-session-by-key (&optional session)
>> (defun org-babel-python-initiate-session (&optional session _params)
>> "Create a session named SESSION according to PARAMS."
>> (unless (string= session "none")
>> - (org-babel-python-session-buffer
>> - (org-babel-python-initiate-session-by-key session))))
>> + (let ((session (org-babel-python-session-buffer
>> + (org-babel-python-initiate-session-by-key session)))))
>> + (org-babel-comint-wait-for-output session)))
>>
>> (defvar org-babel-python-eoe-indicator "org_babel_python_eoe"
>> "A string to indicate that evaluation has completed.")
>> --
>> 2.35.1
>
> I get the following in the Messages:
> org-babel-comint-wait-for-output: Buffer python-chain does not exist or has no process
>
> Note that python-chain is the name of my session passed to the python blocks as shown in the following line within my org file.
>
> #+PROPERTY: header-args:python :session python-chain :exports results :results raw file :file-ext table
>
> Thanks,
>
> Mark
>
I will work on getting more details this weekend. It looked like the buffer passed to org-babel-comint-wait-for-output was missing the "earmuffs". I tried adding the earmuffs with the org function for that but although I got passed that error, I messed up my python session and the following python blocks were not aware of the imports in the first block.
Mark
[-- Attachment #2: Type: text/html, Size: 29460 bytes --]
next prev parent reply other threads:[~2022-08-27 21:32 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <24B9F777-2B69-45FD-ADBB-11E7A18F7A9A@disney.com>
[not found] ` <87wnnnjlav.fsf@gmail.com>
[not found] ` <AEC70ED1-96FB-4FC9-9971-EA0C5421BC8A@disney.com>
[not found] ` <871r5u1e3m.fsf@gmail.com>
[not found] ` <61CB9513-0EEC-4F46-90D6-1D208BBADFA1@disney.com>
[not found] ` <87pmteb1ef.fsf@gmail.com>
[not found] ` <21C76818-63E5-4DC9-A60D-2BEF33813A18@disney.com>
[not found] ` <73383502-159B-4BD9-8836-6C8A534A7063@disney.com>
[not found] ` <87r1dry7x0.fsf@gmail.com>
[not found] ` <32AF1DCB-F81A-4FB7-8EB2-31B483E5E468@disney.com>
[not found] ` <87sfy7qadr.fsf@gmail.com>
[not found] ` <073CC0D1-9900-4613-87E8-D69EA1C11623@disney.com>
[not found] ` <87k0jjq79k.fsf@gmail.com>
[not found] ` <87k0jiuuzc.fsf@gnus.org>
[not found] ` <87mtbsgxwh.fsf@gnus.org>
2022-08-26 13:30 ` bug#50514: 28.0.50; org inline call to python src block req C-g to break Ihor Radchenko
2022-08-27 13:16 ` Lars Ingebrigtsen
2022-08-27 14:11 ` Ihor Radchenko
2022-08-27 18:56 ` Barton, Mark
2022-08-27 21:31 ` Mark Barton [this message]
2022-08-28 0:38 ` Barton, Mark
2022-08-28 1:30 ` Ihor Radchenko
2022-08-28 1:56 ` Barton, Mark
2022-08-28 2:55 ` Ihor Radchenko
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
List information: https://www.orgmode.org/
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=9CADADD8-72C0-4951-9950-AC7149B339F4@gmail.com \
--to=mbarton98@gmail.com \
--cc=50514@debbugs.gnu.org \
--cc=Mark.Barton@disney.com \
--cc=arstoffel@gmail.com \
--cc=larsi@gnus.org \
--cc=yantar92@gmail.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/emacs/org-mode.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).