Path: csiph.com!v102.xanadu-bbs.net!xanadu-bbs.net!feeder.erje.net!eu.feeder.erje.net!news.stack.nl!newsfeed.xs4all.nl!newsfeed4a.news.xs4all.nl!xs4all!newsgate.cistron.nl!newsgate.news.xs4all.nl!post.news.xs4all.nl!not-for-mail Return-Path: X-Original-To: python-list@python.org Delivered-To: python-list@mail.python.org X-Spam-Status: OK 0.001 X-Spam-Evidence: '*H*': 1.00; '*S*': 0.00; 'subject:IDLE': 0.04; 'root': 0.05; 'subject:text': 0.05; 'tkinter': 0.07; 'assuming': 0.09; 'explanation': 0.09; 'received:80.91': 0.09; 'received:80.91.229': 0.09; 'received:gmane.org': 0.09; 'received:list': 0.09; 'restarted': 0.09; 'jan': 0.12; 'vista': 0.14; 'windows': 0.15; 'ast': 0.16; 'effect.': 0.16; 'fixes.': 0.16; 'idle.': 0.16; 'morning,': 0.16; 'received:80.91.229.3': 0.16; 'received:plane.gmane.org': 0.16; 'reedy': 0.16; 'wrote:': 0.18; 'not,': 0.20; 'appears': 0.22; 'import': 0.22; 'header:User- Agent:1': 0.23; 'header:X-Complaints-To:1': 0.27; 'header:In- Reply-To:1': 0.27; 'am,': 0.29; 'generally': 0.29; 'yesterday': 0.31; 'run': 0.32; 'text': 0.33; 'running': 0.33; 'screen': 0.34; 'something': 0.35; 'test': 0.35; 'idle': 0.36; 'done': 0.36; 'similar': 0.36; 'wrong': 0.37; 'somebody': 0.38; 'window': 0.38; 'writes': 0.38; 'to:addr:python-list': 0.38; 'anything': 0.39; 'to:addr:python.org': 0.39; 'received:org': 0.40; 'how': 0.40; 'even': 0.60; 'gone': 0.61; 'here': 0.66; 'between': 0.67; 'url:htm': 0.73; 'evening': 0.84; 'received:fios.verizon.net': 0.84; 'working,': 0.84; 'trouble.': 0.91 X-Injected-Via-Gmane: http://gmane.org/ To: python-list@python.org From: Terry Reedy Subject: Re: Bad text appearance in IDLE Date: Thu, 12 Feb 2015 16:12:31 -0500 References: <54dc9bee$0$3046$426a34cc@news.free.fr> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit X-Gmane-NNTP-Posting-Host: pool-98-114-97-173.phlapa.fios.verizon.net User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:31.0) Gecko/20100101 Thunderbird/31.4.0 In-Reply-To: <54dc9bee$0$3046$426a34cc@news.free.fr> X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: General discussion list for the Python programming language List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Newsgroups: comp.lang.python Message-ID: Lines: 30 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1423775571 news.xs4all.nl 2840 [2001:888:2000:d::a6]:59495 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:85616 On 2/12/2015 7:26 AM, ast wrote: > Hello > > Here is how text appears in IDLE window > http://www.cjoint.com/data/0BmnEIcxVAx.htm Do you get anything similar when running the console interpreter? > Yesterday evening I had not this trouble. It appears > this morning. I restarted my computer with no effect. > > A windows Vista update has been done this morning, with about 10 fixes. > I suspect something gone wrong with this update > > Has somebody an explanation about that ? Assuming not, the difference between them is that Idle writes to the screen via a tkinter (tk) text widget. You might try something like this to see if tkinter is generally not working, even when run without Idle. import tkinter as tk root = tk.Tk() text = tk.Text() text.pack() text.insert('1.0', 'this is a test eeeccee') -- Terry Jan Reedy