[issue5219] IDLE/Tkinter: edit win stops updating when tooltip is active

2012-03-13 Thread Martin v . Löwis
Martin v. Löwis added the comment: Thanks for the patch and the review. -- nosy: +loewis resolution: -> fixed status: open -> closed ___ Python tracker ___ _

[issue5219] IDLE/Tkinter: edit win stops updating when tooltip is active

2012-03-13 Thread Roundup Robot
Roundup Robot added the comment: New changeset af1f8adc913b by Martin v. Löwis in branch '2.7': Issue #5219: Prevent event handler cascade in IDLE. http://hg.python.org/cpython/rev/af1f8adc913b -- ___ Python tracker

[issue5219] IDLE/Tkinter: edit win stops updating when tooltip is active

2012-03-13 Thread Roundup Robot
Roundup Robot added the comment: New changeset 7e79dbceb039 by Martin v. Löwis in branch '3.2': Issue #5219: Prevent event handler cascade in IDLE. http://hg.python.org/cpython/rev/7e79dbceb039 -- ___ Python tracker

[issue5219] IDLE/Tkinter: edit win stops updating when tooltip is active

2012-03-13 Thread Roundup Robot
Roundup Robot added the comment: New changeset 505c3b7dc539 by Martin v. Löwis in branch 'default': Issue #5219: Prevent event handler cascade in IDLE. http://hg.python.org/cpython/rev/505c3b7dc539 -- nosy: +python-dev ___ Python tracker

[issue5219] IDLE/Tkinter: edit win stops updating when tooltip is active

2012-03-13 Thread Andrew Svetlov
Andrew Svetlov added the comment: I confirm: patch5219.diff solves the problem in linux box. -- nosy: +asvetlov ___ Python tracker ___ ___

[issue5219] IDLE/Tkinter: edit win stops updating when tooltip is active

2011-10-31 Thread Ned Deily
Ned Deily added the comment: I can fairly easily reproduce the hang on a current OS X system and the latest patch appears to solve the problem. Looks good to me. -- nosy: +ned.deily stage: needs patch -> patch review ___ Python tracker

[issue5219] IDLE/Tkinter: edit win stops updating when tooltip is active

2011-10-30 Thread Roger Serwy
Roger Serwy added the comment: Attached is a patch against 3.2.2 which does proper after_cancel calls on the after calls to checkhide_event. -- Added file: http://bugs.python.org/file23558/patch5219.diff ___ Python tracker

[issue5219] IDLE/Tkinter: edit win stops updating when tooltip is active

2011-06-12 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- versions: +Python 3.3 -Python 2.6, Python 3.1 ___ Python tracker ___ ___ Python-bugs-list mailing list U

[issue5219] IDLE/Tkinter: edit win stops updating when tooltip is active

2010-05-11 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- versions: -Python 3.0 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mai

[issue5219] IDLE/Tkinter: edit win stops updating when tooltip is active

2009-06-11 Thread Roger Serwy
Roger Serwy added the comment: I've uploaded a patch to solve the problem. In CallTipWindow.py, the showtip function binds key releases and button releases to the checkhide_event function. The checkhide_event function creates a .after callback to itself whenever it's called. Each key release ad

[issue5219] IDLE/Tkinter: edit win stops updating when tooltip is active

2009-05-18 Thread Kurt B. Kaiser
Kurt B. Kaiser added the comment: Bug exhibits on Linux with Tk 8.4, but requires a couple hundred characters to show up. Also goes away if MultiCall is disabled. -- ___ Python tracker ___

[issue5219] IDLE/Tkinter: edit win stops updating when tooltip is active

2009-05-18 Thread Kurt B. Kaiser
Kurt B. Kaiser added the comment: Occurs with and w/o the subprocess, but sooner (fewer char) with the subprocess. If the MultiCall wrapper on the EditorWindow Text widget is disabled, the bug disappears. -- versions: +Python 2.6, Python 3.1, Python 3.2 _

[issue5219] IDLE/Tkinter: edit win stops updating when tooltip is active

2009-05-18 Thread Kurt B. Kaiser
Kurt B. Kaiser added the comment: As a workaround, if you need the tooltip, select Edit / Show Calltip from the menu or use the hotkey to 'reopen' the tooltip. That will get you another 60 characters. Otherwise, just hit esc to close the tooltip and your keystrokes will appear. --

[issue5219] IDLE/Tkinter: edit win stops updating when tooltip is active

2009-05-18 Thread Kurt B. Kaiser
Kurt B. Kaiser added the comment: Not issue 1529353. Edit window stops updating after about 60 keystrokes when a tooltip window is active. 1. Strings not necessary. Only occurs when a tooltip is active. For example, if rz is undefined, entering rz( followed by a long key sequence won't ra