From mboxrd@z Thu Jan 1 00:00:00 1970 From: Michael Steeves Subject: Suppressing interpeter output in code blocks Date: Wed, 05 Jun 2013 16:01:56 -0400 Message-ID: <51AF9934.6000009@raingods.net> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:33990) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UkJuD-0002Ze-JX for emacs-orgmode@gnu.org; Wed, 05 Jun 2013 16:02:07 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UkJu7-0006Ox-GZ for emacs-orgmode@gnu.org; Wed, 05 Jun 2013 16:02:01 -0400 Received: from taal.pair.com ([209.68.4.203]:56650) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UkJu7-0006OB-D2 for emacs-orgmode@gnu.org; Wed, 05 Jun 2013 16:01:55 -0400 Received: from [10.145.8.115] (unknown [64.192.133.129]) by taal.pair.com (Postfix) with ESMTPSA id 5108511AC3A for ; Wed, 5 Jun 2013 16:01:54 -0400 (EDT) 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: Orgmode Mailing List Apologies if this is documented somehere, but I haven't been having much luck in trying to find the answer to this. If I have an org doc with some python code in it #+begin_src python :session testing :results output a = 1 b = 2 c = a + b print "Hello, world." #+end_src when I evaluate the block, the output is #+RESULTS: : Python 2.7.5 (default, May 19 2013, 13:26:46) : [GCC 4.2.1 Compatible Apple Clang 4.1 ((tags/Apple/clang-421.11.66))] on darwin : Type "help", "copyright", "credits" or "license" for more information. : >>> >>> Hello, world. Is there any way to suppress all the extra text, and just get the "Hello, world." string as my output? -Mike -- Michael Steeves (steeves@raingods.net)