Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
c7a26562
Commit
c7a26562
authored
Aug 12, 2003
by
Raymond Hettinger
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
SF patch#786531 'the the' typo. Contributed by George Yoshida
parent
f17d65da
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
+3
-3
Doc/mac/libframework.tex
Doc/mac/libframework.tex
+1
-1
Doc/ref/ref7.tex
Doc/ref/ref7.tex
+1
-1
Doc/tut/tut.tex
Doc/tut/tut.tex
+1
-1
No files found.
Doc/mac/libframework.tex
View file @
c7a26562
...
...
@@ -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}
...
...
Doc/ref/ref7.tex
View file @
c7a26562
...
...
@@ -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
...
...
Doc/tut/tut.tex
View file @
c7a26562
...
...
@@ -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.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment