From: Andrew Svetlov Date: Thu, 26 Jul 2012 14:19:40 +0000 (+0300) Subject: Issue #15041: Update "see also" list in tkinter documentation. X-Git-Tag: v2.7.4rc1~684 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=15fc22011d284d30104d5a55445572d635c1a9a5;p=thirdparty%2FPython%2Fcpython.git Issue #15041: Update "see also" list in tkinter documentation. --- diff --git a/Doc/library/tkinter.rst b/Doc/library/tkinter.rst index 5f209a9d0d8a..dfb4da6de39b 100644 --- a/Doc/library/tkinter.rst +++ b/Doc/library/tkinter.rst @@ -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 `_ - Fredrik Lundh's on-line reference material. + `TKDocs `_ + Extensive tutorial plus friendlier widget pages for some of the widgets. - `Tkinter reference: a GUI for Python `_ + `Tkinter reference: a GUI for Python `_ On-line reference material. + `Tkinter docs from effbot `_ + Online reference for tkinter supported by effbot.org. + + `Tcl/Tk manual `_ + Official manual for the latest tcl/tk version. + + `Programming Python `_ + Book by Mark Lutz, has excellent coverage of Tkinter. + + `Modern Tkinter for Busy Python Developers `_ + Book by Mark Rozerman about building attractive and modern graphical user interfaces with Python and Tkinter. + + `An Introduction to Tkinter `_ + Fredrik Lundh's on-line reference material. + `Python and Tkinter Programming `_ The book by John Grayson (ISBN 1-884777-81-3). diff --git a/Misc/NEWS b/Misc/NEWS index 4b65fa90a768..b0f77a0a7f11 100644 --- 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.