Does the object keyword have any uses except for classes like:
class HelloWorld(object):
pass
Because when assigning a variable to object it seems as if there is no use for it (no variable.__dict__ or anything).
for example:
x=object()
x.anything="foo"#<----- throws an error