diff options
| author | Georg Brandl <georg@python.org> | 2008-05-20 07:20:12 (GMT) | 
|---|---|---|
| committer | Georg Brandl <georg@python.org> | 2008-05-20 07:20:12 (GMT) | 
| commit | 5a42ca6c04d2db1f3040ae43f37a4f350251c25c (patch) | |
| tree | e218178cc7f4c3a60eb311cb3101dee839ec2169 /Doc/library/tkinter.rst | |
| parent | 6634bf2919d855ccd821e878b8cc00c7209f1cbe (diff) | |
| download | cpython-5a42ca6c04d2db1f3040ae43f37a4f350251c25c.zip cpython-5a42ca6c04d2db1f3040ae43f37a4f350251c25c.tar.gz cpython-5a42ca6c04d2db1f3040ae43f37a4f350251c25c.tar.bz2  | |
Add notes that tkinter modules will be renamed.
Diffstat (limited to 'Doc/library/tkinter.rst')
| -rw-r--r-- | Doc/library/tkinter.rst | 8 | 
1 files changed, 8 insertions, 0 deletions
diff --git a/Doc/library/tkinter.rst b/Doc/library/tkinter.rst index d393341..2b1ab84 100644 --- a/Doc/library/tkinter.rst +++ b/Doc/library/tkinter.rst @@ -11,6 +11,11 @@ the Tk GUI toolkit.  Both Tk and :mod:`Tkinter` are available on most Unix  platforms, as well as on Windows and Macintosh systems.  (Tk itself is not part  of Python; it is maintained at ActiveState.) +.. note:: + +   :mod:`Tkinter` has been renamed to :mod:`tkinter` in Python 3.0.  The +   :term:`2to3` tool will automatically adapt imports when converting your +   sources to 3.0.  .. seealso:: @@ -107,6 +112,9 @@ Other modules that provide Tk support include:  :mod:`turtle`     Turtle graphics in a Tk window. +These have been renamed as well in Python 3.0; they were all made submodules of +the new ``tkinter`` package. +  Tkinter Life Preserver  ----------------------  | 
