Python interpreter is showing NameError on using Object.
>>> class test(Object): pass
...
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
NameError: name 'Object' is not defined
Python version is 2.7.3.
I haven't been able to remove this error. Am I missing something here?