好的我再次难过!这应该很容易; - )
我正在尝试将pytables类tables.IsDefinition
子类化,如下所示:
import tables
class doc(tables.IsDescription):
def __init__(self, data):
self.data = data
然后我尝试实例化它我得到一个错误:
doc('test')
---------------------------------------------------------------------------
TypeError Traceback (most recent call last)
...<ipython console> in <module>()
TypeError: object.__new__() takes no parameters
这是Python 2.6.5(r265:79063,2010年4月16日,13:57:41)和IPython 0.10
我做错了什么?