Re: [Pytables-users] Inheritance in

2012-03-30 Thread Francesc Alted
On 3/30/12 7:57 PM, Daπid wrote: > Hello, > > I have several different kinds of data tables, absolutely independent, > defined as in the tutorial > (http://pytables.github.com/usersguide/tutorials.html): > > > from tables import * > > class SaltedPie(IsDescription): > dough=Int64Col() > bak

[Pytables-users] Inheritance in

2012-03-30 Thread Daπid
Hello, I have several different kinds of data tables, absolutely independent, defined as in the tutorial (http://pytables.github.com/usersguide/tutorials.html): from tables import * class SaltedPie(IsDescription): dough=Int64Col() baking=Float64Col() anchovy=Float32Col() class SweetPi