summaryrefslogtreecommitdiffstats
path: root/Doc/lib/tkinter.tex
diff options
context:
space:
mode:
authorFred Drake <fdrake@acm.org>2006-07-29 23:34:57 (GMT)
committerFred Drake <fdrake@acm.org>2006-07-29 23:34:57 (GMT)
commitd457a97bebd8830695f1042c13a37122e93b8ef4 (patch)
treecfc5f4f6534fdc6150716e1450471b9c178d1137 /Doc/lib/tkinter.tex
parent2d5c8e3bb1325d8cdefa27ddbbbf10a84160c8a9 (diff)
downloadcpython-d457a97bebd8830695f1042c13a37122e93b8ef4.zip
cpython-d457a97bebd8830695f1042c13a37122e93b8ef4.tar.gz
cpython-d457a97bebd8830695f1042c13a37122e93b8ef4.tar.bz2
markup cleanups
Diffstat (limited to 'Doc/lib/tkinter.tex')
-rw-r--r--Doc/lib/tkinter.tex20
1 files changed, 10 insertions, 10 deletions
diff --git a/Doc/lib/tkinter.tex b/Doc/lib/tkinter.tex
index 0cc8d58..45d7820 100644
--- a/Doc/lib/tkinter.tex
+++ b/Doc/lib/tkinter.tex
@@ -103,14 +103,14 @@ of an application. Each instance has its own associated Tcl interpreter.
\end{classdesc}
\begin{funcdesc}{Tcl}{screenName=None, baseName=None, className='Tk', useTk=0}
-The \function{Tcl} function is a factory function which creates an object
-much like that created by the \class{Tk} class, except that it does not
-initialize the Tk subsystem. This is most often useful when driving the Tcl
-interpreter in an environment where one doesn't want to create extraneous
-toplevel windows, or where one cannot (i.e. Unix/Linux systems without an X
-server). An object created by the \function{Tcl} object can have a Toplevel
-window created (and the Tk subsystem initialized) by calling its
-\method{loadtk} method.
+The \function{Tcl} function is a factory function which creates an
+object much like that created by the \class{Tk} class, except that it
+does not initialize the Tk subsystem. This is most often useful when
+driving the Tcl interpreter in an environment where one doesn't want
+to create extraneous toplevel windows, or where one cannot (such as
+\UNIX/Linux systems without an X server). An object created by the
+\function{Tcl} object can have a Toplevel window created (and the Tk
+subsystem initialized) by calling its \method{loadtk} method.
\versionadded{2.4}
\end{funcdesc}
@@ -316,10 +316,10 @@ is called \code{.} (period) and children are delimited by more
periods. For example, \code{.myApp.controlPanel.okButton} might be
the name of a widget.
-\item[\var{options} ]
+\item[\var{options}]
configure the widget's appearance and in some cases, its
behavior. The options come in the form of a list of flags and values.
-Flags are proceeded by a `-', like Unix shell command flags, and
+Flags are proceeded by a `-', like \UNIX{} shell command flags, and
values are put in quotes if they are more than one word.
\end{description}