Hello,
When I make a list with list comprehensions, I get what I believe are
incorrect results. I made a short example that shows what I'm talking
about. I'm not sure if this is a bug in the iterator, or if this behavior
is by design.
Thanks,
Craig
*
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