From: Andrew Svetlov Date: Thu, 26 Jul 2012 14:02:57 +0000 (+0300) Subject: Issue #15041: update "see also" list in tkinter documentation. X-Git-Tag: v3.3.0b2~105^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e708a8a4aa3bda35a6720d0635a7468fb7a63b81;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 ae5635f3c800..f6e095a5c040 100644 --- a/Doc/library/tkinter.rst +++ b/Doc/library/tkinter.rst @@ -19,12 +19,27 @@ this should open a window demonstrating a simple Tk interface. 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 9bbec4f47a3c..eac19b528e8f 100644 --- a/Misc/NEWS +++ b/Misc/NEWS @@ -98,6 +98,8 @@ Core and Builtins Library ------- +- Issue #15041: update "see also" list in tkinter documentation. + - Issue #15402: An issue in the struct module that caused sys.getsizeof to return incorrect results for struct.Struct instances has been fixed. Initial patch by Serhiy Storchaka.