diff options
author | Alexander Belopolsky <alexander.belopolsky@gmail.com> | 2010-07-27 14:16:32 (GMT) |
---|---|---|
committer | Alexander Belopolsky <alexander.belopolsky@gmail.com> | 2010-07-27 14:16:32 (GMT) |
commit | c02cc2707a8ed58896511f7ee151b5509873afc3 (patch) | |
tree | 5d1a66a8fc328729bd556ea879b4a99b5ce37ecf /Doc/library/tkinter.rst | |
parent | 5a63183a8b8a9e177f97feac975850df5e6f98aa (diff) | |
download | cpython-c02cc2707a8ed58896511f7ee151b5509873afc3.zip cpython-c02cc2707a8ed58896511f7ee151b5509873afc3.tar.gz cpython-c02cc2707a8ed58896511f7ee151b5509873afc3.tar.bz2 |
Issue #9384: python -m tkinter will now display a simple demo applet.
Diffstat (limited to 'Doc/library/tkinter.rst')
-rw-r--r-- | Doc/library/tkinter.rst | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Doc/library/tkinter.rst b/Doc/library/tkinter.rst index 7bb54fd..cf92ed4 100644 --- a/Doc/library/tkinter.rst +++ b/Doc/library/tkinter.rst @@ -9,7 +9,9 @@ The :mod:`tkinter` package ("Tk interface") is the standard Python interface to the Tk GUI toolkit. Both Tk and :mod:`tkinter` are available on most Unix platforms, as well as on Windows systems. (Tk itself is not part of Python; it -is maintained at ActiveState.) +is maintained at ActiveState.) You can check that :mod:`tkinter` is properly +installed on your system by running ``python -m tkinter`` from the command line; +this should open a window demonstrating a simple Tk interface. .. seealso:: |