From: Fred Drake Date: Mon, 29 Nov 2004 13:12:44 +0000 (+0000) Subject: REVERT revision 1.260; the trunk is FROZEN. X-Git-Tag: v2.4~3 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=6e3fa2911d2f50b499b5f72262ea2f98e3e47831;p=thirdparty%2FPython%2Fcpython.git REVERT revision 1.260; the trunk is FROZEN. This change can be made on the trunk and release24-maint branch after the trunk is unfrozen. --- diff --git a/Doc/tut/tut.tex b/Doc/tut/tut.tex index 091fb1f3e54b..df798b46b6a4 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 instance variables like +and much more clear than an approach using class variables like \code{self.index} and \code{self.data}. In addition to automatic method creation and saving program state, when