Paul Morrow wrote: > ###################################### > class Parent(object): > class Foo(object): > baz = 'hello from Parent.Foo' > > class Child(Parent): > #Foo.baz = 'hello from Child.Foo' > pass Here you want "Parent.Foo.bax = ..." instead. What are you actually trying to do? This is unusual code, I think... -Peter