From mboxrd@z Thu Jan 1 00:00:00 1970 From: Seb Subject: Python loops with ":results output" Date: Mon, 20 Feb 2017 22:04:26 -0600 Message-ID: <87vas4p4tx.fsf@otaria.sebmel.org> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:57579) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cg1b6-00061L-6P for emacs-orgmode@gnu.org; Mon, 20 Feb 2017 22:58:40 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cg1b3-0008Ca-6x for emacs-orgmode@gnu.org; Mon, 20 Feb 2017 22:58:40 -0500 Received: from [195.159.176.226] (port=40431 helo=blaine.gmane.org) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1cg1b2-0008C4-WE for emacs-orgmode@gnu.org; Mon, 20 Feb 2017 22:58:37 -0500 Received: from list by blaine.gmane.org with local (Exim 4.84_2) (envelope-from ) id 1cg1aq-0004Ek-JC for emacs-orgmode@gnu.org; Tue, 21 Feb 2017 04:58:24 +0100 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" To: emacs-orgmode@gnu.org Hello, Is it not possible to avoid having the continuation triple dots in the first output line when capturing output from a Python loop? ---<--------------------cut here---------------start------------------->--- Export artifact: #+BEGIN_SRC python :session :results output :exports results for i in range(3): print("Iter {0}".format(i)) #+END_SRC #+RESULTS: : : ... Iter 0 : Iter 1 : Iter 2 ---<--------------------cut here---------------end--------------------->--- Thanks for any advice, -- Seb