[Python-checkins] python/dist/src/Doc/lib tkinter.tex,1.10.6.2,1.10.6.3

fdrake@users.sourceforge.net fdrake@users.sourceforge.net
Mon, 08 Jul 2002 07:42:47 -0700


Update of /cvsroot/python/python/dist/src/Doc/lib
In directory usw-pr-cvs1:/tmp/cvs-serv6428

Modified Files:
      Tag: release22-maint
	tkinter.tex 
Log Message:
Fix typo reported by Kent Engström, and a bunch of broken markup.


Index: tkinter.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/tkinter.tex,v
retrieving revision 1.10.6.2
retrieving revision 1.10.6.3
diff -C2 -d -r1.10.6.2 -r1.10.6.3
*** tkinter.tex	31 May 2002 18:22:14 -0000	1.10.6.2
--- tkinter.tex	8 Jul 2002 14:42:45 -0000	1.10.6.3
***************
*** 472,486 ****
  The options supported by a given widget are listed in that widget's
  man page, or can be queried at runtime by calling the
! \kbd{config()} method with arguments, or by calling the keys()
! method on that widget. The return value of these calls is a dictionary
! whose key is the name of the option (e.g. \kbd{relief}) and whose
! values are 5 tuples. 
  
! (Some options, like \kbd{bg} are synonyms for common options with
! hard-to-type names (\kbd{bg} is shorthand for "background"). 
! Passing the \kbd{config()} method the name of a
! shorthand option will return a 2-tuple, not 5-tuple. The 2-tuple
! passed back will contain the name of the synonym ``real''
! option. (\kbd{bg}, \kbd{background}))
  
  \begin{tableiii}{c|l|l}{textrm}{Index}{Meaning}{Example}
--- 472,486 ----
  The options supported by a given widget are listed in that widget's
  man page, or can be queried at runtime by calling the
! \method{config()} method without arguments, or by calling the
! \method{keys()} method on that widget.  The return value of these
! calls is a dictionary whose key is the name of the option as a string
! (for example, \code{'relief'}) and whose values are 5-tuples.
  
! Some options, like \code{bg} are synonyms for common options with long
! names (\code{bg} is shorthand for "background"). Passing the
! \code{config()} method the name of a shorthand option will return a
! 2-tuple, not 5-tuple. The 2-tuple passed back will contain the name of
! the synonym and the ``real'' option (such as \code{('bg',
! 'background')}).
  
  \begin{tableiii}{c|l|l}{textrm}{Index}{Meaning}{Example}