This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author oefe
Recipients georg.brandl, oefe
Date 2008-06-28.20:44:20
SpamBayes Score 0.0007194157
Marked as misclassified No
Message-id <1214685862.01.0.416464861432.issue3229@psf.upfronthosting.co.za>
In-reply-to
Content
In the language reference, compound statements, class definitions:
"""
Programmer’s note: Variables defined in the class definition are class can 
be set in a method with self.name = value.
"""

This sentence doesn't is not even grammatically valid. It seems that there 
is something missing after "are class".

See:
http://docs.python.org/dev/3.0/reference/compound_stmts.html#class-
definitions

In 2.5, the corresponding text is:
"""
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 __init__() method or in another method.
"""
History
Date User Action Args
2008-06-28 20:44:22oefesetspambayes_score: 0.000719416 -> 0.0007194157
recipients: + oefe, georg.brandl
2008-06-28 20:44:22oefesetspambayes_score: 0.000719416 -> 0.000719416
messageid: <1214685862.01.0.416464861432.issue3229@psf.upfronthosting.co.za>
2008-06-28 20:44:21oefelinkissue3229 messages
2008-06-28 20:44:20oefecreate