Did somebody already implement an open source bridge to make python programs work with PyTables 2.3.1 and PyTables 3.0.0 at the same time?
Although PyTables promises to work with the old API until 3.1.0, I encountered some glitches. For example, createArray
takes a keyword argument object
, whereas the new create_array
relies on obj
instead. So calling createArray
with the object
argument (using PyTables 3.0.0) is automatically translated to create_array(object=...)
which fails with a Type Error. I could, of course, quickly fix this single glitch in my code, but I wonder if somebody implemented a full wrap for the old API to guarantee compatibility even beyond 3.1.0.
Thanks and cheers, Robert