From mboxrd@z Thu Jan 1 00:00:00 1970 From: =?ISO-8859-1?Q?Andreas_R=F6hler?= Subject: Re: Bug: Python SRC exec tuple fails [7.9.3f (release_7.9.3f-17-g7524ef MY-PATH/)] Date: Wed, 08 May 2013 15:37:26 +0200 Message-ID: <518A5516.6070704@easy-emacs.de> References: <5189F4EC.7010609@easy-emacs.de> <5189FAC6.8060807@easy-emacs.de> <518A059D.8080402@easy-emacs.de> <87fvxxprum.fsf@gmail.com> <518A4D4A.9010200@easy-emacs.de> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 8bit Return-path: Received: from eggs.gnu.org ([208.118.235.92]:59877) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Ua4WQ-0004N4-Gf for emacs-orgmode@gnu.org; Wed, 08 May 2013 09:35:07 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Ua4WP-00020d-D6 for emacs-orgmode@gnu.org; Wed, 08 May 2013 09:35:06 -0400 Received: from moutng.kundenserver.de ([212.227.126.186]:52626) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Ua4WO-0001v3-Tm for emacs-orgmode@gnu.org; Wed, 08 May 2013 09:35:05 -0400 In-Reply-To: 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 Am 08.05.2013 15:20, schrieb Roland Donat: > >> >> hmm, indeed, shows up nicely now. >> Please close, cheers, >> >> Andreas >> >> > > That's right, it works with python3 but that is not the case with python2... > > Cheers, > > Roland. python2 fails here already with a common shell, independently from Emacs. OTOH that works with python2: #+NAME: test #+begin_src python :results value :preamble # -*- coding: utf-8 -*- :return a[0][0] a = ( ( "é", "a" ), ( "a", "à" ) ) #+end_src #+RESULTS: test : é Maybe there is a work-around from a[0][0] ?