Caution: within a method of C, an assignment like ``self.count = 42`` creates a new and unrelated instance named "count" in ``self``'s own dict.

More clear is to say Caution: within a method of class C, an assignment like ``self.count = 42`` creates a new and unrelated instance named "count" in ``self``'s own dict.