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

Guilherme Polo report at bugs.python.org
Tue Jul 1 02:46:14 CEST 2008


New submission from Guilherme Polo <ggpolo at gmail.com>:

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:
import Tkinter
import ScrolledText

paned = Tkinter.PanedWindow()
stext = ScrolledText.ScrolledText(paned)
paned.add(stext)

----------
components: Tkinter
files: scrolledtext_masterstr.diff
keywords: patch
messages: 69037
nosy: gpolo
severity: normal
status: open
title: ScrolledText can't be placed in a PanedWindow
versions: Python 2.6
Added file: http://bugs.python.org/file10787/scrolledtext_masterstr.diff

_______________________________________
Python tracker <report at bugs.python.org>
<http://bugs.python.org/issue3248>
_______________________________________


More information about the Python-bugs-list mailing list