I got this error using the method createMapping() from the Python API:
--> 172 mymap = self.createArray(self.root.lookup, title, atom=tables.UInt32Atom(),AttributeError: 'File' object has no attribute 'createArray'`
It turns out that in my "tables" module (version 3.3.0) the method createArray() is called crate_array().
I fixed this bug localy by manually changing one line in the createMapping(self, title, entries, overwrite=False) method of the File class.
I got this error using the method createMapping() from the Python API:
I fixed this bug localy by manually changing one line in the
createMapping(self, title, entries, overwrite=False)
method of theFile
class.The original code was:
I replaced it by:
For information, I am using Python 2.7.3, and the openmatrix version 0.2