Hello,
I would like to be able to make a base class that has some columns, and
subclass that base class so I can inherit those columns, for example:
import tables
class A(tables.IsDescription):
x = tables.Int32Col()
class B(A):
y = tables.Int32Col()
inFile = tables.openFile('test.h5', m
A Wednesday 04 June 2008, escriguéreu:
> I guess my problem is to replace an array with totally a different
> array. The slicing notation works well for replacing the data in the
> existing array. In my case, I need to "redefine" the array. I tried
> to do something like this and it doesn't set n