Path: csiph.com!usenet.pasdenom.info!gegeweb.org!de-l.enfer-du-nord.net!feeder2.enfer-du-nord.net!newsfeed.eweka.nl!eweka.nl!feeder3.eweka.nl!newsfeed.xs4all.nl!newsfeed2.news.xs4all.nl!xs4all!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.002 X-Spam-Evidence: '*H*': 1.00; '*S*': 0.00; 'received:80.91': 0.09; 'received:80.91.229': 0.09; 'received:gmane.org': 0.09; 'received:list': 0.09; 'gui': 0.12; 'thread': 0.14; 'dexter': 0.16; 'one)': 0.16; 'received:80.91.229.3': 0.16; 'received:dip.t-dialin.net': 0.16; 'received:plane.gmane.org': 0.16; 'received:t-dialin.net': 0.16; 'subject:Problems': 0.16; 'subject:threads': 0.16; 'wrote:': 0.18; 'widget': 0.19; 'written': 0.21; 'example': 0.22; 'this?': 0.23; 'header:User- Agent:1': 0.23; 'processor': 0.24; 'java': 0.24; 'server.': 0.24; 'header:X-Complaints-To:1': 0.27; 'code': 0.31; 'supposed': 0.32; 'run': 0.32; 'another': 0.32; 'text': 0.33; 'subject:with': 0.35; 'created': 0.35; 'something': 0.35; 'there': 0.35; 'shows': 0.36; 'url:org': 0.36; 'wrong': 0.37; 'server': 0.38; 'to:addr:python- list': 0.38; 'to:addr:python.org': 0.39; 'received:org': 0.40; 'how': 0.40; 'here': 0.66; 'url:htm': 0.73 X-Injected-Via-Gmane: http://gmane.org/ To: python-list@python.org From: Peter Otten <__peter__@web.de> Subject: Re: Problems with sockets and threads Date: Thu, 11 Apr 2013 16:41:40 +0200 Organization: None References: <347b9197-b409-4651-8c01-26af4c3461ca@googlegroups.com> Mime-Version: 1.0 Content-Type: text/plain; charset="ISO-8859-1" Content-Transfer-Encoding: 7Bit X-Gmane-NNTP-Posting-Host: p50849b7c.dip.t-dialin.net User-Agent: KNode/4.7.3 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: 14 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1365691213 news.xs4all.nl 2698 [2001:888:2000:d::a6]:49111 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:43376 Dexter Deejay wrote: > When i try to run this code and to connect to server (server is written in > java that part of code is ok) everything stalls. Thread that i created > here occupies processor all the time and GUI freezes. It's supposed to be > waiting for message from server. (asynchronous one) Is there something > that i did wrong here, or is there better way to do this? Fredrik Lundh has an example that shows how to update a Text widget from another thread: http://effbot.org/zone/tkinter-threads.htm