power_insn: drop custom Record representation
authorDmitry Selyutin <ghostmansd@gmail.com>
Fri, 2 Sep 2022 08:43:06 +0000 (11:43 +0300)
committerDmitry Selyutin <ghostmansd@gmail.com>
Fri, 2 Sep 2022 08:57:36 +0000 (11:57 +0300)
src/openpower/decoder/power_insn.py

index ea10d05dfde44eb3f9527da90b9d717808b1b4ac..a4407df2c6809183b746c9b0a3862536fca1014e 100644 (file)
@@ -531,9 +531,6 @@ class Record:
             return NotImplemented
         return (self.opcode < other.opcode)
 
-    def __repr__(self):
-        return f"{self.__class__.__name__}(name={self.name!r}, opcode={self.opcode})"
-
     @cached_property
     def opcode(self):
         fields = []