[issue3248] ScrolledText can't be placed in a PanedWindow

2008-12-29 Thread Guilherme Polo
Guilherme Polo added the comment: On Mon, Dec 29, 2008 at 2:02 PM, Martin v. Löwis wrote: > > Martin v. Löwis added the comment: > > Notice that the example function doesn't actually work; it gives > > _tkinter.TclError: wrong # args: should be ".148002724.148002500 insert > index chars ?tagLi

[issue3248] ScrolledText can't be placed in a PanedWindow

2008-12-29 Thread Martin v. Löwis
Changes by Martin v. Löwis : -- resolution: -> accepted status: open -> closed ___ Python tracker ___ ___ Python-bugs-list mailing lis

[issue3248] ScrolledText can't be placed in a PanedWindow

2008-12-29 Thread Martin v. Löwis
Martin v. Löwis added the comment: Thanks again for the patch. Merged into recent branches as r68006, r68007, r68008, and r68009 ___ Python tracker ___ ___

[issue3248] ScrolledText can't be placed in a PanedWindow

2008-12-29 Thread Martin v. Löwis
Martin v. Löwis added the comment: Notice that the example function doesn't actually work; it gives _tkinter.TclError: wrong # args: should be ".148002724.148002500 insert index chars ?tagList chars tagList ...?" ___ Python tracker

[issue3248] ScrolledText can't be placed in a PanedWindow

2008-12-20 Thread Martin v. Löwis
Changes by Martin v. Löwis : -- versions: -Python 2.5.3 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://

[issue3248] ScrolledText can't be placed in a PanedWindow

2008-12-19 Thread Martin v. Löwis
Changes by Martin v. Löwis : -- priority: deferred blocker -> release blocker ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue3248] ScrolledText can't be placed in a PanedWindow

2008-12-13 Thread Martin v. Löwis
Martin v. Löwis added the comment: Committed for 2.5 as r67735. It still needs to be applied to the other branches. -- priority: release blocker -> deferred blocker ___ Python tracker __

[issue3248] ScrolledText can't be placed in a PanedWindow

2008-12-12 Thread Guilherme Polo
Guilherme Polo added the comment: On Wed, Dec 10, 2008 at 6:44 AM, Martin v. Löwis wrote: > > Martin v. Löwis added the comment: > > What problem is solved by ScrolledText.diff that isn't already solved by > scrolledtext_masterstr.diff? None. The later is a cleanup of ScrolledText.py. __

[issue3248] ScrolledText can't be placed in a PanedWindow

2008-12-10 Thread Martin v. Löwis
Martin v. Löwis <[EMAIL PROTECTED]> added the comment: What problem is solved by ScrolledText.diff that isn't already solved by scrolledtext_masterstr.diff? -- nosy: +loewis priority: -> release blocker ___ Python tracker <[EMAIL PROTECTED]>

[issue3248] ScrolledText can't be placed in a PanedWindow

2008-11-17 Thread Guilherme Polo
Guilherme Polo <[EMAIL PROTECTED]> added the comment: I've changed it a bit more now, this includes dropping support for cnf. My wish is to actually remove the cnf usage all over Tkinter :) Added file: http://bugs.python.org/file12037/ScrolledText.diff ___ Py

[issue3248] ScrolledText can't be placed in a PanedWindow

2008-11-17 Thread Guilherme Polo
Guilherme Polo <[EMAIL PROTECTED]> added the comment: anyone ? -- versions: +Python 2.5.3, Python 2.7, Python 3.0 ___ Python tracker <[EMAIL PROTECTED]> ___ ___

[issue3248] ScrolledText can't be placed in a PanedWindow

2008-06-30 Thread Guilherme Polo
New submission from Guilherme Polo <[EMAIL PROTECTED]>: Right now ScrolledText can't be added to a Tkinter.PanedWindow, also can't be added to a ttk.Notebook (which is not part of the stdlib), because it is a lacking a proper __str__ method. Run the following sample code to check how it fails: i