SF patch#786531 'the the' typo. Contributed by George Yoshida

This commit is contained in:
Raymond Hettinger 2003-08-12 00:01:17 +00:00
parent f17d65da3a
commit c7a26562f9
3 changed files with 3 additions and 3 deletions

View 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