(stack)
| 439 | |
| 440 | |
| 441 | def op_not(stack): |
| 442 | if len(stack) < 1: |
| 443 | return False |
| 444 | element = stack.pop() |
| 445 | if decode_num(element) == 0: |
| 446 | stack.append(encode_num(1)) |
| 447 | else: |
| 448 | stack.append(encode_num(0)) |
| 449 | return True |
| 450 | |
| 451 | |
| 452 | def op_0notequal(stack): |
nothing calls this directly
no test coverage detected