From mboxrd@z Thu Jan 1 00:00:00 1970 From: Daniel Clemente Subject: results from Python block not visible Date: Thu, 26 Jun 2014 23:16:34 +0700 Message-ID: <87r42bhcil.wl%n142857@gmail.com> Mime-Version: 1.0 (generated by SEMI-EPG 1.14.7 - "Harue") Content-Type: text/plain; charset=ISO-2022-JP Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:54550) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1X0CLx-0003Sy-Ds for emacs-orgmode@gnu.org; Thu, 26 Jun 2014 12:16:58 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1X0CLo-0008WK-Da for emacs-orgmode@gnu.org; Thu, 26 Jun 2014 12:16:49 -0400 Received: from mail-pb0-x22d.google.com ([2607:f8b0:400e:c01::22d]:38797) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1X0CLo-0008W8-7z for emacs-orgmode@gnu.org; Thu, 26 Jun 2014 12:16:40 -0400 Received: by mail-pb0-f45.google.com with SMTP id rr13so3351921pbb.32 for ; Thu, 26 Jun 2014 09:16:39 -0700 (PDT) Received: from la4.gmail.com ([182.253.72.190]) by mx.google.com with ESMTPSA id pz10sm10746213pbb.33.2014.06.26.09.16.37 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Thu, 26 Jun 2014 09:16:38 -0700 (PDT) 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: org-mode Mailinglist Hi, this babel code recently stopped working on my system: #+BEGIN_SRC python :results output print "x" #+END_SRC It prints: #+RESULTS: : None I expected to see "x". This worked some days ago. If I use a command like os.system("xeyes"), I see it running. In addition I don't see the Python block highlighted GNU Emacs 24.4.50.1 (x86_64-unknown-linux-gnu, X toolkit, Xaw scroll bars) of 2014-06-20 on la4 org-mode from today Debian. Python 2.7 (same with Python 3). It also happens under emacs -Q Of course I loaded Python support: (org-babel-do-load-languages 'org-babel-load-languages '((R . t) (C . t) ; … (python . t) (ruby . t) (sql . t) (sqlite . t))) Greetings, Daniel