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

Class Scanner24

uncompyle6/scanners/scanner24.py:20–29  ·  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 Scanner24(scan.Scanner25):
21 def __init__(self, show_asm=False):
22 scan.Scanner25.__init__(self, show_asm)
23 # These are the only differences in initialization between
24 # 2.4, 2.5 and 2.6
25 self.opc = opcode_24
26 self.opname = opcode_24.opname
27 self.version = (2, 4)
28 self.genexpr_name = "<generator expression>"
29 return
30
31
32if __name__ == "__main__":

Callers 1

scanner24.pyFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected