MCPcopy
hub / github.com/rocky/python-uncompyle6 / Scanner25

Class Scanner25

uncompyle6/scanners/scanner25.py:20–28  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

18# The history is that 2.7 support is the cleanest,
19# then from that we got 2.6 and so on.
20class 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
31if __name__ == "__main__":

Callers 1

scanner25.pyFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected