summaryrefslogtreecommitdiffstats
path: root/Lib/lib-tk/tkCommonDialog.py
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2008-05-20 07:13:37 (GMT)
committerGeorg Brandl <georg@python.org>2008-05-20 07:13:37 (GMT)
commit6634bf2919d855ccd821e878b8cc00c7209f1cbe (patch)
tree77ef2dfaaf00ec144e75ac19708e4dd457604ebc /Lib/lib-tk/tkCommonDialog.py
parent33cece05b918dff706a4298e33f84d8e8a0391d2 (diff)
downloadcpython-6634bf2919d855ccd821e878b8cc00c7209f1cbe.zip
cpython-6634bf2919d855ccd821e878b8cc00c7209f1cbe.tar.gz
cpython-6634bf2919d855ccd821e878b8cc00c7209f1cbe.tar.bz2
Tkinter rename reversal: remove tkinter package, adapt imports and docs.
Diffstat (limited to 'Lib/lib-tk/tkCommonDialog.py')
-rw-r--r--Lib/lib-tk/tkCommonDialog.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/Lib/lib-tk/tkCommonDialog.py b/Lib/lib-tk/tkCommonDialog.py
index f61eb45..2cd9be4 100644
--- a/Lib/lib-tk/tkCommonDialog.py
+++ b/Lib/lib-tk/tkCommonDialog.py
@@ -1,14 +1,14 @@
# base class for tk common dialogues
#
# this module provides a base class for accessing the common
-# dialogues available in Tk 4.2 and newer. use filedialog,
-# colorchooser, and messagebox to access the individual
+# dialogues available in Tk 4.2 and newer. use tkFileDialog,
+# tkColorChooser, and tkMessageBox to access the individual
# dialogs.
#
# written by Fredrik Lundh, May 1997
#
-from tkinter import *
+from Tkinter import *
class Dialog: