Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.python > #65247

Re: Tkinter widgets into classes.

Path csiph.com!v102.xanadu-bbs.net!xanadu-bbs.net!feeder.erje.net!eu.feeder.erje.net!xlned.com!feeder1.xlned.com!newsfeed.xs4all.nl!newsfeed3a.news.xs4all.nl!xs4all!newsgate.cistron.nl!newsgate.news.xs4all.nl!post.news.xs4all.nl!not-for-mail
Return-Path <python-python-list@m.gmane.org>
X-Original-To python-list@python.org
Delivered-To python-list@mail.python.org
X-Spam-Status OK 0.008
X-Spam-Evidence '*H*': 0.98; '*S*': 0.00; 'versions.': 0.07; 'received:80.91': 0.09; 'received:80.91.229': 0.09; 'received:gmane.org': 0.09; 'received:list': 0.09; 'subject:into': 0.09; 'runs': 0.10; 'jan': 0.12; 'systems.': 0.12; 'windows': 0.15; 'idle,': 0.16; 'loop.': 0.16; 'loops': 0.16; 'received:80.91.229.3': 0.16; 'received:plane.gmane.org': 0.16; 'reedy': 0.16; 'routinely': 0.16; 'subject:Tkinter': 0.16; 'do,': 0.16; 'version.': 0.19; 'header:User-Agent:1': 0.23; 'documented': 0.24; 'header:X-Complaints-To:1': 0.27; 'header:In-Reply-To:1': 0.27; 'code': 0.31; 'file': 0.32; 'run': 0.32; 'open': 0.33; 'running': 0.33; 'test': 0.35; 'but': 0.35; 'there': 0.35; 'version': 0.36; 'idle': 0.36; 'process,': 0.38; 'to:addr:python- list': 0.38; 'to:addr:python.org': 0.39; 'received:org': 0.40; 'even': 0.60; 'received:173': 0.61; 'times': 0.62; 'more': 0.64; 'different': 0.65; 'between': 0.67; 'results': 0.69; 'received:fios.verizon.net': 0.84; 'seldom': 0.84; 'processes,': 0.91; 'hand,': 0.93
X-Injected-Via-Gmane http://gmane.org/
To python-list@python.org
From Terry Reedy <tjreedy@udel.edu>
Subject Re: Tkinter widgets into classes.
Date Sat, 01 Feb 2014 20:26:09 -0500
References <5e297400-3322-45aa-ab7e-016af083b259@googlegroups.com> <04a9d0b0-c968-42c2-94d2-93438558e227@googlegroups.com> <mailman.6289.1391291392.18130.python-list@python.org> <2377621f-a208-4a12-b66c-bb678df6efcf@googlegroups.com> <mailman.6292.1391293398.18130.python-list@python.org> <fab76f9e-7369-4bbc-9da8-06994b731dde@googlegroups.com>
Mime-Version 1.0
Content-Type text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding 7bit
X-Gmane-NNTP-Posting-Host pool-173-75-254-207.phlapa.fios.verizon.net
User-Agent Mozilla/5.0 (Windows NT 6.1; WOW64; rv:24.0) Gecko/20100101 Thunderbird/24.2.0
In-Reply-To <fab76f9e-7369-4bbc-9da8-06994b731dde@googlegroups.com>
X-BeenThere python-list@python.org
X-Mailman-Version 2.1.15
Precedence list
List-Id General discussion list for the Python programming language <python-list.python.org>
List-Unsubscribe <https://mail.python.org/mailman/options/python-list>, <mailto:python-list-request@python.org?subject=unsubscribe>
List-Archive <http://mail.python.org/pipermail/python-list/>
List-Post <mailto:python-list@python.org>
List-Help <mailto:python-list-request@python.org?subject=help>
List-Subscribe <https://mail.python.org/mailman/listinfo/python-list>, <mailto:python-list-request@python.org?subject=subscribe>
Newsgroups comp.lang.python
Message-ID <mailman.6295.1391304389.18130.python-list@python.org> (permalink)
Lines 14
NNTP-Posting-Host 2001:888:2000:d::a6
X-Trace 1391304389 news.xs4all.nl 2842 [2001:888:2000:d::a6]:34501
X-Complaints-To abuse@xs4all.nl
Xref csiph.com comp.lang.python:65247

Show key headers only | View raw


Idle, which used tkinter, runs multiple windows in one process with one 
event loop. There is no reason I know of to run multiple event loops in 
one process, and if you do, the results will not be documented and might 
vary between runs or between different systems.

Idle can also be run multiple times in multiple processes, each with its 
own event loop. But there is seldom a reason to do that with the same 
version. On the other hand, I routinely have more than one version 
running in order to test code with multiple versions. I can even have 
the same file open in multiple versions.

-- 
Terry Jan Reedy

Back to comp.lang.python | Previous | NextPrevious in thread | Next in thread | Find similar | Unroll thread


Thread

Tkinter widgets into classes. Lewis Wood <fluttershy363@gmail.com> - 2014-02-01 11:43 -0800
  Re: Tkinter widgets into classes. archie65@live.co.uk - 2014-02-01 12:03 -0800
  Re: Tkinter widgets into classes. archie65@live.co.uk - 2014-02-01 12:04 -0800
  Re: Tkinter widgets into classes. Lewis Wood <fluttershy363@gmail.com> - 2014-02-01 12:12 -0800
    Re: Tkinter widgets into classes. Dave Angel <davea@davea.name> - 2014-02-01 16:52 -0500
      Re: Tkinter widgets into classes. Lewis Wood <fluttershy363@gmail.com> - 2014-02-01 14:12 -0800
        Re: Tkinter widgets into classes. Dave Angel <davea@davea.name> - 2014-02-01 17:26 -0500
          Re: Tkinter widgets into classes. Lewis Wood <fluttershy363@gmail.com> - 2014-02-01 15:07 -0800
            Re: Tkinter widgets into classes. "albert visser" <albert.visser@gmail.com> - 2014-02-02 01:46 +0100
            Re: Tkinter widgets into classes. Terry Reedy <tjreedy@udel.edu> - 2014-02-01 20:26 -0500
            Re: Tkinter widgets into classes. Christian Gollwitzer <auriocus@gmx.de> - 2014-02-02 11:22 +0100
              Re: Tkinter widgets into classes. Lewis Wood <fluttershy363@gmail.com> - 2014-02-02 12:38 -0800
                Re: Tkinter widgets into classes. David Hutto <dwightdhutto@gmail.com> - 2014-02-02 22:21 -0500
  Re: Tkinter widgets into classes. Christian Gollwitzer <auriocus@gmx.de> - 2014-02-02 11:15 +0100

csiph-web