From mboxrd@z Thu Jan 1 00:00:00 1970 From: Christopher Allan Webber Subject: [BUG] [Babel] Quotes-in-strings not being escaped in python, breaking output Date: Tue, 09 Nov 2010 10:58:37 -0600 Message-ID: <87tyjqjuwy.fsf@dustycloud.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from [140.186.70.92] (port=57967 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1PFrWQ-0008ER-Rr for emacs-orgmode@gnu.org; Tue, 09 Nov 2010 11:58:15 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1PFrWP-0004sH-RO for emacs-orgmode@gnu.org; Tue, 09 Nov 2010 11:58:14 -0500 Received: from li28-75.members.linode.com ([75.127.72.75]:45413) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1PFrWP-0004s5-P5 for emacs-orgmode@gnu.org; Tue, 09 Nov 2010 11:58:13 -0500 Received: from grumps (localhost [127.0.0.1]) by li28-75.members.linode.com (Postfix) with ESMTP id 2CC09C90E for ; Tue, 9 Nov 2010 16:58:12 +0000 (UTC) List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode@gnu.org Strings with quotes in them aren't having the inner quotes escaped right while read by ob-python in python. Example: #+BEGIN_SRC python return [['607', 'Show license short name on the deed'], ['255', '"Smart" 404 pages']] #+END_SRC #+results: | 607 | Show license short name on the deed | | | | 255 | | Smart | 404 pages |