diff options
author | Raymond Hettinger <python@rcn.com> | 2003-08-12 00:01:17 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2003-08-12 00:01:17 (GMT) |
commit | c7a26562f93b8f6fffd65b506ff2aa65297717e4 (patch) | |
tree | a2d4b1f40f27b1b8b7bad61f92bb5ba6aac942d5 /Doc/tut | |
parent | f17d65da3a16f2a61805ca4c77f2515ba0a2e0b8 (diff) | |
download | cpython-c7a26562f93b8f6fffd65b506ff2aa65297717e4.zip cpython-c7a26562f93b8f6fffd65b506ff2aa65297717e4.tar.gz cpython-c7a26562f93b8f6fffd65b506ff2aa65297717e4.tar.bz2 |
SF patch#786531 'the the' typo. Contributed by George Yoshida
Diffstat (limited to 'Doc/tut')
-rw-r--r-- | Doc/tut/tut.tex | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/tut/tut.tex b/Doc/tut/tut.tex index 0a26d6b..1dcf5c3 100644 --- a/Doc/tut/tut.tex +++ b/Doc/tut/tut.tex @@ -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. |