Re: [Pytables-users] flush on __exit__

2012-04-02 Thread Daπid
I noticed that if a program raises an error, it shows a message indicating the file is closed, but it doesn't show anything if I terminate it from outside (in my case, stop from PyDev). Is it being flushed? Is there any way of doing that, apart from enveloping the whole program in a

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