fprintf(stderr,"TypeError: unsupported operand type(s) for %s: '%s' and '%s'\n",getInplaceOpSymbol(op_type).c_str(),getTypeName(lhs)->c_str(),getTypeName(rhs)->c_str());
}else{
fprintf(stderr,"TypeError: unsupported operand type(s) for %s: '%s' and '%s'\n",getOpSymbol(op_type).c_str(),getTypeName(lhs)->c_str(),getTypeName(rhs)->c_str());
}
if(VERBOSITY()){
if(inplace){
if(irtn)
fprintf(stderr,"%s has %s, but returned NotImplemented\n",getTypeName(lhs)->c_str(),iop_name.c_str());
else
fprintf(stderr,"%s does not have %s\n",getTypeName(lhs)->c_str(),iop_name.c_str());
}
if(lrtn)
fprintf(stderr,"%s has %s, but returned NotImplemented\n",getTypeName(lhs)->c_str(),op_name.c_str());