]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Issue #15041: Update "see also" list in tkinter documentation.
authorAndrew Svetlov <andrew.svetlov@gmail.com>
Thu, 26 Jul 2012 14:19:40 +0000 (17:19 +0300)
committerAndrew Svetlov <andrew.svetlov@gmail.com>
Thu, 26 Jul 2012 14:19:40 +0000 (17:19 +0300)
Doc/library/tkinter.rst
Misc/NEWS

index 5f209a9d0d8a01782ec85ead46c6a3ea5e9aeae6..dfb4da6de39b6aaa7facc6bad89545234b31bad5 100644 (file)
@@ -23,12 +23,27 @@ is maintained at ActiveState.)
       The Python Tkinter Topic Guide provides a great deal of information on using Tk
       from Python and links to other sources of information on Tk.
 
-   `An Introduction to Tkinter <http://www.pythonware.com/library/an-introduction-to-tkinter.htm>`_
-      Fredrik Lundh's on-line reference material.
+   `TKDocs <http://www.tkdocs.com/>`_
+      Extensive tutorial plus friendlier widget pages for some of the widgets.
 
-   `Tkinter reference: a GUI for Python <http://infohost.nmt.edu/tcc/help/pubs/lang.html>`_
+   `Tkinter reference: a GUI for Python <http://infohost.nmt.edu/tcc/help/pubs/tkinter/>`_
       On-line reference material.
 
+   `Tkinter docs from effbot <http://effbot.org/tkinterbook/>`_
+      Online reference for tkinter supported by effbot.org.
+
+   `Tcl/Tk manual <http://www.tcl.tk/man/tcl8.5/>`_
+      Official manual for the latest tcl/tk version.
+
+   `Programming Python <http://www.amazon.com/Programming-Python-Mark-Lutz/dp/0596158106/>`_
+      Book by Mark Lutz, has excellent coverage of Tkinter.
+
+   `Modern Tkinter for Busy Python Developers <http://www.amazon.com/Modern-Tkinter-Python-Developers-ebook/dp/B0071QDNLO/>`_
+      Book by Mark Rozerman about building attractive and modern graphical user interfaces with Python and Tkinter.
+
+   `An Introduction to Tkinter <http://www.pythonware.com/library/an-introduction-to-tkinter.htm>`_
+      Fredrik Lundh's on-line reference material.
+
    `Python and Tkinter Programming <http://www.amazon.com/exec/obidos/ASIN/1884777813>`_
       The book by John Grayson (ISBN 1-884777-81-3).
 
index 4b65fa90a76812753d255f91126e43eebee84da3..b0f77a0a7f11a7c4eeaa47dc5f4f57b9c8ae35f7 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -9,6 +9,8 @@ What's New in Python 2.7.4
 Core and Builtins
 -----------------
 
+- Issue #15041: Update "see also" list in tkinter documentation.
+
 - Issue #14579: Fix error handling bug in the utf-16 decoder.  Patch by
   Serhiy Storchaka.