class main(): def IND(self, index): print("Indexing is not supported with this instruction") return (1) def EXEC(self, params): print("Execution is not supported with this instruction") return (1) def ATR(self, target): print("Getting an attribute is not supported with this instruction") return (1) def STAT(self, params): print("Statements are not supported with this instruction") return (1) def OP(self, arg1, arg2): if str(arg1) == str(arg2): return (0, True) else: return (0, False)