On Wed, 24 Feb 2021 22:35:32 +1100
John O'Hagan wrote:
> Hi list
>
> I have a 3.9 tkinter interface that displays data from an arbitrary
> number of threads, each of which runs for an arbitrary period of time.
> A frame opens in the root window when each thread starts and closes
> when it stops.
On 2021-02-27 02:38, John O'Hagan wrote:
On Sat, 27 Feb 2021 01:06:06 +
MRAB wrote:
On 2021-02-26 23:59, John O'Hagan wrote:
> On Fri, 26 Feb 2021 08:19:14 +0100
> Christian Gollwitzer wrote:
>
>> Am 26.02.21 um 06:15 schrieb John O'Hagan:
> [...]
>> >
>> > I've followed your sugg
On Sat, 27 Feb 2021 10:59:24 +1100
John O'Hagan wrote:
> On Fri, 26 Feb 2021 08:19:14 +0100
> Christian Gollwitzer wrote:
[...]
>
> > Can you also check this program, which reuses the same widget path
> > name, albeit does the creation/destruction in cycles:
> >
> > ==
> >
On Sat, 27 Feb 2021 01:06:06 +
MRAB wrote:
> On 2021-02-26 23:59, John O'Hagan wrote:
> > On Fri, 26 Feb 2021 08:19:14 +0100
> > Christian Gollwitzer wrote:
> >
> >> Am 26.02.21 um 06:15 schrieb John O'Hagan:
> > [...]
> >> >
> >> > I've followed your suggestions as per my last post,
On 2021-02-26 23:59, John O'Hagan wrote:
On Fri, 26 Feb 2021 08:19:14 +0100
Christian Gollwitzer wrote:
Am 26.02.21 um 06:15 schrieb John O'Hagan:
[...]
>
> I've followed your suggestions as per my last post, and can confirm
> the same freezing behaviour when running your code directly as a
On Fri, 26 Feb 2021 08:19:14 +0100
Christian Gollwitzer wrote:
> Am 26.02.21 um 06:15 schrieb John O'Hagan:
[...]
> >
> > I've followed your suggestions as per my last post, and can confirm
> > the same freezing behaviour when running your code directly as a
> > tclsh script on Debian Testing, T
Am 26.02.21 um 06:15 schrieb John O'Hagan:
On Thu, 25 Feb 2021 21:57:19 +0100
Christian Gollwitzer wrote:
I think it is not yet clear, if this is a bug in Tkinter or in
Tcl/Tk, the underlying scripting language. It might also be platform
dependent. Are you on Windows? Here is an equivalent Tcl
On Thu, 25 Feb 2021 21:57:19 +0100
Christian Gollwitzer wrote:
> Am 24.02.21 um 12:35 schrieb John O'Hagan:
> > Hi list
> >
> > I have a 3.9 tkinter interface that displays data from an arbitrary
> > number of threads, each of which runs for an arbitrary period of
> > time. A frame opens in the
On 2021-02-25 20:57, Christian Gollwitzer wrote:
Am 24.02.21 um 12:35 schrieb John O'Hagan:
Hi list
I have a 3.9 tkinter interface that displays data from an arbitrary
number of threads, each of which runs for an arbitrary period of time.
A frame opens in the root window when each thread starts
On Thu, 25 Feb 2021 11:06:05 -0500
Richard Damon wrote:
> On 2/24/21 6:35 AM, John O'Hagan wrote:
> > Here is some minimal, non-threaded code that reproduces the problem
> > on my system (Xfce4 on Debian testing):
> >
> > from tkinter import *
> > from random import randint
> >
> > root = Tk()
>
On Thu, 25 Feb 2021 09:54:15 -0500
Terry Reedy wrote:
> On 2/24/2021 6:53 PM, John O'Hagan wrote:
> > On Wed, 24 Feb 2021 11:03:30 -0500
> > Terry Reedy wrote:
> >
> >> On 2/24/2021 6:35 AM, John O'Hagan wrote:
> > [...]
> >>
> >> I am trying this out on Windows 10, with a wider label (so
Am 24.02.21 um 12:35 schrieb John O'Hagan:
Hi list
I have a 3.9 tkinter interface that displays data from an arbitrary
number of threads, each of which runs for an arbitrary period of time.
A frame opens in the root window when each thread starts and closes
when it stops. Widgets in the frame an
On 2/24/21 6:35 AM, John O'Hagan wrote:
> Hi list
>
> I have a 3.9 tkinter interface that displays data from an arbitrary
> number of threads, each of which runs for an arbitrary period of time.
> A frame opens in the root window when each thread starts and closes
> when it stops. Widgets in the fr
On 2/24/2021 6:53 PM, John O'Hagan wrote:
On Wed, 24 Feb 2021 11:03:30 -0500
Terry Reedy wrote:
On 2/24/2021 6:35 AM, John O'Hagan wrote:
[...]
I am trying this out on Windows 10, with a wider label (so I can move
the window) and a button that changes when pressed, and a sequential
counter.
On Thu, 25 Feb 2021 00:27:33 +
MRAB wrote:
> On 2021-02-24 23:23, John O'Hagan wrote:
[...]
> > In case it's relevant, to clarify what I mean by "freeze": the
> > window continues to display the digits indefinitely if no attempt
> > is made to interact with the window, but after some hours h
On 2021-02-24 23:23, John O'Hagan wrote:
On Wed, 24 Feb 2021 13:07:24 +
MRAB wrote:
On 2021-02-24 11:35, John O'Hagan wrote:
[...]
>
> Here is some minimal, non-threaded code that reproduces the problem
> on my system (Xfce4 on Debian testing):
>
> from tkinter import *
> from random
On Wed, 24 Feb 2021 11:03:30 -0500
Terry Reedy wrote:
> On 2/24/2021 6:35 AM, John O'Hagan wrote:
[...]
>
> I am trying this out on Windows 10, with a wider label (so I can move
> the window) and a button that changes when pressed, and a sequential
> counter. Will report when the Window freez
On Wed, 24 Feb 2021 13:07:24 +
MRAB wrote:
> On 2021-02-24 11:35, John O'Hagan wrote:
[...]
> >
> > Here is some minimal, non-threaded code that reproduces the problem
> > on my system (Xfce4 on Debian testing):
> >
> > from tkinter import *
> > from random import randint
> >
> > root = Tk
On 2/24/2021 6:35 AM, John O'Hagan wrote:
Hi list
I have a 3.9 tkinter interface that displays data from an arbitrary
number of threads, each of which runs for an arbitrary period of time.
A frame opens in the root window when each thread starts and closes
when it stops. Widgets in the frame and
On 2021-02-24 11:35, John O'Hagan wrote:
Hi list
I have a 3.9 tkinter interface that displays data from an arbitrary
number of threads, each of which runs for an arbitrary period of time.
A frame opens in the root window when each thread starts and closes
when it stops. Widgets in the frame and
Hi list
I have a 3.9 tkinter interface that displays data from an arbitrary
number of threads, each of which runs for an arbitrary period of time.
A frame opens in the root window when each thread starts and closes
when it stops. Widgets in the frame and the root window control the
thread and how
21 matches
Mail list logo