Re: [Pytables-users] Inheritance in

2012-03-31 Thread Antonio Valentino
Hi Danid, hi Francesc, Il 31/03/2012 03:08, Francesc Alted ha scritto: 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): [CUT] One, naively,

Re: [Pytables-users] Inheritance in

2012-03-31 Thread Francesc Alted
On 3/31/12 2:13 AM, Antonio Valentino wrote: Hi Danid, hi Francesc, Il 31/03/2012 03:08, Francesc Alted ha scritto: 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

Re: [Pytables-users] Inheritance in

2012-03-31 Thread Daπid
On Sat, Mar 31, 2012 at 9:13 AM, Antonio Valentino antonio.valent...@tiscali.it wrote: Some work on in broken inheritance of IsDescriptor has been done in the development branch (see [#65]). Thanks to Andrea Bedini for the patch. Which version of PyTables are you using David? That is indeed a

[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