]> granicus.if.org Git - python/commitdiff
SF patch#786531 'the the' typo. Contributed by George Yoshida
authorRaymond Hettinger <python@rcn.com>
Tue, 12 Aug 2003 00:01:17 +0000 (00:01 +0000)
committerRaymond Hettinger <python@rcn.com>
Tue, 12 Aug 2003 00:01:17 +0000 (00:01 +0000)
Doc/mac/libframework.tex
Doc/ref/ref7.tex
Doc/tut/tut.tex

index 8723d7302e8d3103e9306c637b12b59c2da63735..c4d0ef90d492586ae939cf24eb3168b51f2e9bc0 100644 (file)
@@ -174,7 +174,7 @@ application-wide handler if the window is frontmost.
 \begin{methoddesc}[Application]{do_dialogevent}{event}
 Called early in the event loop to handle modeless dialog events. The
 default method simply dispatches the event to the relevant dialog (not
-through the the \code{DialogWindow} object involved). Override if you
+through the \code{DialogWindow} object involved). Override if you
 need special handling of dialog events (keyboard shortcuts, etc).
 \end{methoddesc}
 
index 1c0a0ee03186444006ac05406b1bdc72e7642f0d..346dce07c28fd8a72c6a577f45674c3a4375a93b 100644 (file)
@@ -435,7 +435,7 @@ class object in the original local namespace.
 
 \strong{Programmer's note:} variables defined in the class definition
 are class variables; they are shared by all instances.  To define
-instance variables, they must be given a value in the the
+instance variables, they must be given a value in the
 \method{__init__()} method or in another method.  Both class and
 instance variables are accessible through the notation
 ``\code{self.name}'', and an instance variable hides a class variable
index 0a26d6b37f0f60c8d7e0c524b14d37671a7f592b..1dcf5c3ebc2e76876e40175b46f0065be4efa22d 100644 (file)
@@ -4485,7 +4485,7 @@ This binds the \kbd{Tab} key to the completion function, so hitting
 the \kbd{Tab} key twice suggests completions; it looks at Python
 statement names, the current local variables, and the available module
 names.  For dotted expressions such as \code{string.a}, it will
-evaluate the the expression up to the final \character{.} and then
+evaluate the expression up to the final \character{.} and then
 suggest completions from the attributes of the resulting object.  Note
 that this may execute application-defined code if an object with a
 \method{__getattr__()} method is part of the expression.