This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: ScrolledText hungs up in some conditions
Type: Stage:
Components: Library (Lib) Versions: Python 2.4
process
Status: closed Resolution: out of date
Dependencies: Superseder:
Assigned To: loewis Nosy List: amaury.forgeotdarc, dani_filth, loewis, tovrstra
Priority: normal Keywords:

Created on 2005-12-25 15:06 by dani_filth, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Messages (3)
msg27144 - (view) Author: dani_filth (dani_filth) Date: 2005-12-25 15:06
The next code causes Python to hung in some 
conditions :

#------------------------------------------------------
from ScrolledText import * 

root=Tk() 
ScrolledText(root, bg='white').pack(fill=BOTH, 
expand=YES) 
root.mainloop() 
#------------------------------------------------------

Run the script. Pass focus to the text field. Then 
enter one Tab and type several letters. After that 
with having pushed Ctrl-key press several times UP 
button. Script hungs with 100% CPU-usage.

P.S. My config : WinXP sp2, python 2.4.2 
msg27145 - (view) Author: Toon Verstraelen (tovrstra) Date: 2006-01-13 16:14
Logged In: YES 
user_id=970944

I could verify this bug. My configuration is quite different:

Python 2.4.2 (#1, Oct 17 2005, 09:05:20)
[GCC 3.3.6 (Gentoo 3.3.6, ssp-3.3.6-1.0, pie-8.7.8)] on linux2
msg83315 - (view) Author: Amaury Forgeot d'Arc (amaury.forgeotdarc) * (Python committer) Date: 2009-03-08 16:58
Reproduces with 2.4.2, but seems fixed with 2.5.
History
Date User Action Args
2022-04-11 14:56:14adminsetgithub: 42727
2009-03-08 16:58:14amaury.forgeotdarcsetstatus: open -> closed

nosy: + amaury.forgeotdarc
messages: + msg83315

resolution: out of date
2005-12-25 15:06:11dani_filthcreate