@Override
 public void calcAutoCompleteSettings(String field, Map<String, Object> attributes) {
   initPython();
   if (pexec.isImplemented(6)) {
     pexec.execPythonVoid("calc_auto_complete_settings", field, attributes);
   } else {
     super.calcAutoCompleteSettings(field, attributes);
   }
 }
 public void superCalcAutoCompleteSettings(String field, Map<String, Object> attributes) {
   super.calcAutoCompleteSettings(field, attributes);
 }