diff options
author | Guido van Rossum <guido@python.org> | 1997-08-14 14:17:28 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1997-08-14 14:17:28 (GMT) |
commit | 1530c879850d48c4f296d248e171ecf7c5d645f3 (patch) | |
tree | 9c1a60db8527cfc7b437c8e5882c7b4fdbf781cd /Lib/lib-tk/tkCommonDialog.py | |
parent | f53c86c2b65edc65db524d98aa42a06605c59de8 (diff) | |
download | cpython-1530c879850d48c4f296d248e171ecf7c5d645f3.zip cpython-1530c879850d48c4f296d248e171ecf7c5d645f3.tar.gz cpython-1530c879850d48c4f296d248e171ecf7c5d645f3.tar.bz2 |
Fred Lundh's latest versions.
Diffstat (limited to 'Lib/lib-tk/tkCommonDialog.py')
-rw-r--r-- | Lib/lib-tk/tkCommonDialog.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Lib/lib-tk/tkCommonDialog.py b/Lib/lib-tk/tkCommonDialog.py index 33126c5..df26272 100644 --- a/Lib/lib-tk/tkCommonDialog.py +++ b/Lib/lib-tk/tkCommonDialog.py @@ -42,7 +42,7 @@ class Dialog: self._fixoptions() - # we need a stub widget to properly process the options + # we need a dummy widget to properly process the options # (at least as long as we use Tkinter 1.63) w = Frame(self.master) @@ -61,3 +61,4 @@ class Dialog: pass return s + |