diff options
author | Raymond Hettinger <python@rcn.com> | 2004-12-01 04:22:38 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2004-12-01 04:22:38 (GMT) |
commit | 29eb40c36596a767db5a2b680fc8815ebe094509 (patch) | |
tree | c403ed4db256cd7655dfed46df29e586e12058ac /Doc/tut/tut.tex | |
parent | 3805fe7768b84ba829ca0f38d4237b164127bc9d (diff) | |
download | cpython-29eb40c36596a767db5a2b680fc8815ebe094509.zip cpython-29eb40c36596a767db5a2b680fc8815ebe094509.tar.gz cpython-29eb40c36596a767db5a2b680fc8815ebe094509.tar.bz2 |
Fix nit.
Diffstat (limited to 'Doc/tut/tut.tex')
-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 df798b4..091fb1f 100644 --- a/Doc/tut/tut.tex +++ b/Doc/tut/tut.tex @@ -4413,7 +4413,7 @@ created automatically. Another key feature is that the local variables and execution state are automatically saved between calls. This made the function easier to write -and much more clear than an approach using class variables like +and much more clear than an approach using instance variables like \code{self.index} and \code{self.data}. In addition to automatic method creation and saving program state, when |