Robert Johnson wrote: > Would this create a variable "var1" inside the class even though the > creator of the class never intended it to be there Not exactly: the new variable is not created inside the class but just in the _instance_. The class definition and other instances are left untouched. -- Romuald Texier