Path: csiph.com!fu-berlin.de!uni-berlin.de!not-for-mail From: Chris Angelico Newsgroups: comp.lang.python Subject: Re: print size limit Date: Sun, 17 Jan 2016 00:54:52 +1100 Lines: 11 Message-ID: References: Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-Trace: news.uni-berlin.de KCeOYGI1acT6fDhG2BUkQAaB6OSkCbJw741QVolzlAdg== Return-Path: X-Original-To: python-list@python.org Delivered-To: python-list@mail.python.org X-Spam-Status: OK 0.004 X-Spam-Evidence: '*H*': 0.99; '*S*': 0.00; 'received:209.85.223': 0.03; 'fixes': 0.05; 'truncated': 0.07; 'cc:addr:python-list': 0.09; 'jan': 0.11; '2016': 0.16; 'code?': 0.16; 'from:addr:rosuav': 0.16; 'from:name:chris angelico': 0.16; 'received:io': 0.16; 'received:psf.io': 0.16; 'subject:limit': 0.16; 'wrote:': 0.16; 'nested': 0.18; "shouldn't": 0.18; 'cc:2**0': 0.20; 'cc:addr:python.org': 0.20; 'am,': 0.23; "haven't": 0.24; 'header:In-Reply-To:1': 0.24; 'message- id:@mail.gmail.com': 0.27; 'fine': 0.28; 'initial': 0.28; "i'm": 0.30; 'print': 0.30; 'post': 0.31; 'another': 0.32; 'statement': 0.32; 'point': 0.33; 'add': 0.34; 'gets': 0.35; 'received:google.com': 0.35; 'but': 0.36; 'there': 0.36; 'received:209.85': 0.36; 'subject:: ': 0.37; 'doing': 0.38; 'itself': 0.38; 'received:209': 0.38; 'format': 0.39; 'where': 0.40; 'your': 0.60; 'limit': 0.65; '100': 0.79; 'chrisa': 0.84; 'to:none': 0.91 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:cc :content-type:content-transfer-encoding; bh=l9GPqjh1ez0IXZJ+c8kFV619orYgNMVnzhZKTt82EWY=; b=eu3zVdUZPgT0piBx3Dma68WBddLxiPhVuuDBlgjaq5s06Se38mImd4SRt39BLSkgRy Z0YCYV7RWrRAonhMff/OItp4RyWKcm+NZcmiuNglcdY9lFPOrMdGtqHDsdVGbEtJ6B+v /nSo+IO6ngxgnNInkAoLoA8pDcWP2tCo3XyY3ofPpoU/bId1D8gC1TAM41ZKYXEEzr12 MCy0T/fswJtu0MD3m/LLqQZPthtWbF+kXpKxMg2ylqW3E3gi9sHIPujii8cV+9d9SIo9 N8JLoW/8kYxY+XnzgMnIiM101wyGSVIsHZlcSDZYGmAjvyBWYEGjbHpIX4qjN9e5jKlW tn0g== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:mime-version:in-reply-to:references:date :message-id:subject:from:cc:content-type:content-transfer-encoding; bh=l9GPqjh1ez0IXZJ+c8kFV619orYgNMVnzhZKTt82EWY=; b=HFApD4yETr/ju0n7fQ/opuXBoc0IKDdhrMMo2QotCkqyEC92c8YAppV7ykJYF6RLQe 9WRIMWKPPpkJDjqK4ryFjPYS51HeA7srZGsti/1qI+fRc8AQfzZpLkUyR4Ha+iF/jaOm eJIJ1bFuI/lbUIqnT3YJ1Da2FT/sx573Z3UYa7sLQHMQ42LbcT2PqCmyLsroksl2ByP0 JXrNty4mopIT4iGwgQ8UZbl01v+T7VdwB6nua+WVnVZNImuFg0kdhR/7y9TYAtnoRc8m X9cPlEyPWvCpjmykG9Q0cgeoCaxC6OeIh7mfTlS1CBy1cJbCe2BF9DsO0sThjGyoshQw eSUA== X-Gm-Message-State: ALoCoQmKW5Gs9J9QAh5OB8BkB8454WwWVneT7ofobCPKqN8jPsCAlyj5BywFb3X+Okpz2w/+oc2L7ytnW5K0mYs5P8s9GySM2A== X-Received: by 10.107.47.162 with SMTP id v34mr13883692iov.19.1452952492581; Sat, 16 Jan 2016 05:54:52 -0800 (PST) In-Reply-To: X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.20+ Precedence: list List-Id: General discussion list for the Python programming language List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Xref: csiph.com comp.lang.python:101806 On Sun, Jan 17, 2016 at 12:48 AM, wrote: > I'm doing a format conversion and all works fine until I add another 100 = characters... haven't determined exactly where the breaking point is... but= the initial conversion gets truncated and then fixes itself a little while= in. Is there a limit on the print statement or the print statement nested= in a for loop? > -- Shouldn't be. Can you post your code? ChrisA