def getArray(self, attr, roffset, coffset, rows, cols, format):
     try:
         name = attr.split("\t")[-1]
         array = pydevd_vars.eval_in_context(name, self.get_namespace(), self.get_namespace())
         return pydevd_thrift.table_like_struct_to_thrift_struct(array, name, roffset, coffset, rows, cols, format)
     except:
         traceback.print_exc()
         raise PythonUnhandledException(traceback.format_exc())
 def getArray(self, attr, roffset, coffset, rows, cols, format):
     name = attr.split("\t")[-1]
     array = pydevd_vars.eval_in_context(name, self.get_namespace(),
                                         self.get_namespace())
     return pydevd_thrift.table_like_struct_to_thrift_struct(
         array, name, roffset, coffset, rows, cols, format)
 def getArray(self, attr, roffset, coffset, rows, cols, format):
     name = attr.split("\t")[-1]
     array = pydevd_vars.eval_in_context(name, self.get_namespace(), self.get_namespace())
     return pydevd_thrift.table_like_struct_to_thrift_struct(array, name, roffset, coffset, rows, cols, format)