From mboxrd@z Thu Jan 1 00:00:00 1970 From: Roland DONAT Subject: Babel : python generate org source block with an extra comma before * characters Date: Sun, 13 Jul 2014 13:51:57 +0000 (UTC) Message-ID: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:33765) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1X6KCQ-0000Gw-PU for emacs-orgmode@gnu.org; Sun, 13 Jul 2014 09:52:26 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1X6KCJ-00084i-AA for emacs-orgmode@gnu.org; Sun, 13 Jul 2014 09:52:18 -0400 Received: from plane.gmane.org ([80.91.229.3]:39622) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1X6KCJ-00083k-3a for emacs-orgmode@gnu.org; Sun, 13 Jul 2014 09:52:11 -0400 Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1X6KCH-0005DC-Ah for emacs-orgmode@gnu.org; Sun, 13 Jul 2014 15:52:09 +0200 Received: from vsp56-2-88-169-163-185.fbx.proxad.net ([88.169.163.185]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sun, 13 Jul 2014 15:52:09 +0200 Received: from roland.donat by vsp56-2-88-169-163-185.fbx.proxad.net with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sun, 13 Jul 2014 15:52:09 +0200 List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode@gnu.org Dear Orgmode community, Thanks in advance to take some time to help me with my problem... Here is what is making me very sad : I have a python (python 3 interpreter) source block that I use to generate parts of a report written in Orgmode. Suppose we have this little example : #+NAME: test #+BEGIN_SRC python :results value org :session test report = """*** header 1 My pretty report *** header 2 Ah ah! With that stuff, I will increase my *productivity*!!! """ report #+END_SRC What I get is : #+RESULTS: test #+BEGIN_SRC org ,*** header 1 My pretty report ,*** header 2 Ah ah, with that stuff, I will increase my *productivity*!!! #+END_SRC My question : Why Orgmode adds the comma before the star character??? In the manual, I read some things about comma-escaping in Org source block so my intuition tells me that my problem has something to do with that but I wasn't able to solve it for now. My configuration : - Org 8.2.5h on Linux Mint 16. - Python 3 Any help would be much appreciated! Thanks. Roland.