An important comment that needs to be made.
Will Brown
10 years ago
21 | 21 | return isinstance(term, tuple) and len(term) == 2 and term[1] == 'var' |
22 | 22 | |
23 | 23 | def replace_function_addresses(code, func_locations): |
24 | # This is why people hate functional programmers. And this is why I hate that | |
25 | # 'lambda' isn't a lambda. | |
24 | 26 | def replace_for_instruction(instr): |
25 | 27 | def arg_sub(arg): |
26 | 28 | if isinstance(arg, tuple) and len(arg) == 2 and arg[1] == 'func': |