473,396 Members | 1,809 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,396 software developers and data experts.

tkinter test field, scrolling, threads

I have a program where the user pushes a button, a "starting" message is
..inserted to a text field with an associated scroll bar, a thread is started
that inserts a "working..." message on to the end of the text field until
stopped, or until the loop finishes. The loop sleeps for about 3 seconds
every time through (I'm just prototyping at this point). The mainloop just
waits for the user to hit the same button again which will set a flag and
cause the thread to terminate early, otherwise it doesn't have anything to
do. update()'s and update_idle_tasks() get called anytime anything is
written to the text field. Everything works fine until the text field fills
up then the program just freezes with no errors on the console window. If I
change the starting of a thread to a regular function call then everything
works fine.

What is going wrong?

Bob


-----= Posted via Newsfeeds.Com, Uncensored Usenet News =-----
http://www.newsfeeds.com - The #1 Newsgroup Service in the World!
-----== Over 100,000 Newsgroups - 19 Different Servers! =-----
Jul 18 '05 #1
3 2306
Bob Greschke wrote:
I have a program where the user pushes a button, a "starting" message is
.inserted to a text field with an associated scroll bar, a thread is started
that inserts a "working..." message on to the end of the text field until
stopped, or until the loop finishes. The loop sleeps for about 3 seconds
every time through (I'm just prototyping at this point). The mainloop just
waits for the user to hit the same button again which will set a flag and
cause the thread to terminate early, otherwise it doesn't have anything to
do. update()'s and update_idle_tasks() get called anytime anything is
written to the text field. Everything works fine until the text field fills
up then the program just freezes with no errors on the console window. If I
change the starting of a thread to a regular function call then everything
works fine.

What is going wrong?


If you do not post any code, it will be difficult for anyone to help you.
Knowing your Python and tcl/tk versions and your platform will help too.

I know that there are some issues regarding Tkinter and threads, but the
following code works:

--text+threads.py------------------
from Tkinter import *
import time, threading

root = Tk()
t = Text(root, width=8, height=4)
t.pack(side=LEFT, fill=BOTH)
vs = Scrollbar(root, orient=VERTICAL, command=t.yview)
vs.pack(side=RIGHT, fill=Y)
t.configure(yscrollcommand=vs.set)
root.update()

def thLoop():
i = 0
while 1:
t.insert(END, 'spam %s\n' % i)
i += 1
time.sleep(1)

th = threading.Thread(target=thLoop)
th.setDaemon(1)
th.start()

root.mainloop()
-----------------------------------

Tested with Python 2.1.1, tcl/tk 8.3.2 on Linux Mandrake 8.0
--
- Eric Brunel <eric dot brunel at pragmadev dot com> -
PragmaDev : Real Time Software Development Tools - http://www.pragmadev.com

Jul 18 '05 #2
Eric Brunel <er*********@N0SP4M.com> wrote in message news:<c1**********@news-reader2.wanadoo.fr>...
Bob Greschke wrote:
I have a program where the user pushes a button, a "starting" message is
.inserted to a text field with an associated scroll bar, a thread is started
that inserts a "working..." message on to the end of the text field until
stopped, or until the loop finishes. The loop sleeps for about 3 seconds
every time through (I'm just prototyping at this point). The mainloop just
waits for the user to hit the same button again which will set a flag and
cause the thread to terminate early, otherwise it doesn't have anything to
do. update()'s and update_idle_tasks() get called anytime anything is
written to the text field. Everything works fine until the text field fills
up then the program just freezes with no errors on the console window. If I
change the starting of a thread to a regular function call then everything
works fine.

What is going wrong?


If you do not post any code, it will be difficult for anyone to help you.
Knowing your Python and tcl/tk versions and your platform will help too.

I know that there are some issues regarding Tkinter and threads, but the
following code works:

--text+threads.py------------------
from Tkinter import *
import time, threading

root = Tk()
t = Text(root, width=8, height=4)
t.pack(side=LEFT, fill=BOTH)
vs = Scrollbar(root, orient=VERTICAL, command=t.yview)
vs.pack(side=RIGHT, fill=Y)
t.configure(yscrollcommand=vs.set)
root.update()

def thLoop():
i = 0
while 1:
t.insert(END, 'spam %s\n' % i)
i += 1
time.sleep(1)

th = threading.Thread(target=thLoop)
th.setDaemon(1)
th.start()

root.mainloop()
-----------------------------------

Tested with Python 2.1.1, tcl/tk 8.3.2 on Linux Mandrake 8.0


Sorry...this is WinXP, Python 2.3.3

I'm still messing with this. Your program seems to work fine. No
matter how I mess with it I can't get it to fail, but even if I strip
a lot out of mine it keeps behaving badly. But it is even wierder.
If I "print" any ol' thing to the IDLE console window from a thread,
and keep doing it until the console window fills up to the point where
it should start to scroll, everything IDLE crashes and freezes. The
exact same code works fine on RH9 Python 2.2.2, and Solaris 8 Python
2.1.1. For now I've just turned off the scroll bars when in Windows.
I'd post code, but the program is now pretty big and I'm not sure what
to keep or throw out.

Thanks!
Jul 18 '05 #3
Bob Greschke wrote:
[snip]
I'm still messing with this. Your program seems to work fine. No
matter how I mess with it I can't get it to fail, but even if I strip
a lot out of mine it keeps behaving badly. But it is even wierder.
If I "print" any ol' thing to the IDLE console window from a thread,
and keep doing it until the console window fills up to the point where
it should start to scroll, everything IDLE crashes and freezes. The
exact same code works fine on RH9 Python 2.2.2, and Solaris 8 Python
2.1.1.


Did you try to run your script outside of IDLE, i.e. just by opening a DOS
console and type "python myScript.py"? Since IDLE is itself written with
Tkinter, there may a few problems between your script and IDLE itself.

HTH
--
- Eric Brunel <eric (underscore) brunel (at) despammed (dot) com> -
PragmaDev : Real Time Software Development Tools - http://www.pragmadev.com

Jul 18 '05 #4

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

0
by: Charles Starrett | last post by:
I am a just a dabbler in programming, but I'd like to make some simple cross-platform tools for generating webpages, as well as for text munging. One thing I need is a Mac OS 9/Windows GUI...
7
by: Jane Austine | last post by:
As you add more items, say text lines, in Text widget, it gets too slow and almost impractical to use on. Take idle for example. If the text gets bigger(e.g. print...
2
by: klappnase | last post by:
Hello everyone, I have seen several threads here on this problem, but still cannot figure out the solution. I want to create a window icon for a Tkinter application and tried several things that...
1
by: corrado | last post by:
Hello I have an application running several thread to display some financial data; basically I have a thread displaying HTML tables by means of Tkhtml, another implementing a scrolling ticker...
1
by: syed_saqib_ali | last post by:
Please take a look at and run the code snippet shown below. It creates a canvas with vertical & Horizontal scroll-bars. If you shrink the window to smaller than the area of the canvas, the...
14
by: Hendrik van Rooyen | last post by:
Hi, I get the following: hvr@LINUXBOXMicrocorp:~/Controller/libpython display.py UpdateStringProc should not be invoked for type font Aborted and I am back at the bash prompt - this is...
2
by: Kevin Walzer | last post by:
I'm trying to decide whether I need threads in my Tkinter application or not. My app is a front end to a command-line tool; it feeds commands to the command-line program, then reads its output and...
2
by: Kevin Walzer | last post by:
I'm porting a Tkinter application to wxPython and had a question about wxPython's event loop. The Tkinter app provides a GUI to a command-line tool. It gathers user input, and opens an...
0
by: Steve Holden | last post by:
Allen Taylor wrote: You can publish it in the Python package index - see http://pypi.python.org/pypi/ If you want to have it considered for inclusion into future versions of Python then you...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.