> is there an predefined empty base class
> which I can instanziate to have an
> container i can copy attributes in?

No, but you can always do 

class Foo(object):
   pass

foo = Foo()

foo.attribute = value

Diez
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to