MCPcopy Create free account
hub / github.com/doldecomp/mkdd / raw_input

Function raw_input

tools/custom/decomp_switch.py:72–83  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

70
71
72def raw_input() -> str:
73 print("Paste your disassembled code (doldisasm format):")
74 contents = []
75 while True:
76 try:
77 line = input()
78 if line == "":
79 break
80 except EOFError:
81 break
82 contents.append(line)
83 return contents
84
85
86def trim_inst(inst):

Callers 1

mainFunction · 0.85

Calls 1

appendMethod · 0.45

Tested by

no test coverage detected