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

2008-12-29 Thread Martin v. Löwis
Martin v. Löwis mar...@v.loewis.de 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-29 Thread Martin v. Löwis
Martin v. Löwis mar...@v.loewis.de added the comment: Thanks again for the patch. Merged into recent branches as r68006, r68007, r68008, and r68009 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue3248

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

2008-12-29 Thread Martin v. Löwis
Changes by Martin v. Löwis mar...@v.loewis.de: -- resolution: - accepted status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue3248 ___

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

2008-12-29 Thread Guilherme Polo
Guilherme Polo ggp...@gmail.com added the comment: On Mon, Dec 29, 2008 at 2:02 PM, Martin v. Löwis rep...@bugs.python.org wrote: Martin v. Löwis mar...@v.loewis.de added the comment: Notice that the example function doesn't actually work; it gives _tkinter.TclError: wrong # args: should

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

2008-12-20 Thread Martin v. Löwis
Changes by Martin v. Löwis mar...@v.loewis.de: -- versions: -Python 2.5.3 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue3248 ___ ___

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

2008-12-19 Thread Martin v. Löwis
Changes by Martin v. Löwis mar...@v.loewis.de: -- priority: deferred blocker - release blocker ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue3248 ___

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

2008-12-13 Thread Martin v. Löwis
Martin v. Löwis mar...@v.loewis.de 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 rep...@bugs.python.org

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

2008-12-12 Thread Guilherme Polo
Guilherme Polo ggp...@gmail.com added the comment: On Wed, Dec 10, 2008 at 6:44 AM, Martin v. Löwis rep...@bugs.python.org wrote: Martin v. Löwis mar...@v.loewis.de added the comment: What problem is solved by ScrolledText.diff that isn't already solved by scrolledtext_masterstr.diff?

[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: anyone ? -- versions: +Python 2.5.3, Python 2.7, Python 3.0 ___ Python tracker [EMAIL PROTECTED] http://bugs.python.org/issue3248 ___

[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 ___

[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: