diff options
Diffstat (limited to 'Lib/tkinter/scrolledtext.py')
-rw-r--r-- | Lib/tkinter/scrolledtext.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/tkinter/scrolledtext.py b/Lib/tkinter/scrolledtext.py index 749a06a6..4f9a881 100644 --- a/Lib/tkinter/scrolledtext.py +++ b/Lib/tkinter/scrolledtext.py @@ -11,11 +11,11 @@ Most methods calls are inherited from the Text widget; Pack, Grid and Place methods are redirected to the Frame widget however. """ -__all__ = ['ScrolledText'] - from tkinter import Frame, Text, Scrollbar, Pack, Grid, Place from tkinter.constants import RIGHT, LEFT, Y, BOTH +__all__ = ['ScrolledText'] + class ScrolledText(Text): def __init__(self, master=None, **kw): |