| 18 | # The history is that 2.7 support is the cleanest, |
| 19 | # then from that we got 2.6 and so on. |
| 20 | class Scanner25(scan.Scanner26): |
| 21 | def __init__(self, show_asm=False): |
| 22 | # There are no differences in initialization between |
| 23 | # 2.5 and 2.6 |
| 24 | self.opc = opcode_25 |
| 25 | self.opname = opcode_25.opname |
| 26 | scan.Scanner26.__init__(self, show_asm) |
| 27 | self.version = (2, 5) |
| 28 | return |
| 29 | |
| 30 | |
| 31 | if __name__ == "__main__": |