Return true if the op pushes a small integer to the stack
(self)
| 76 | return int(self - OP_1+1) |
| 77 | |
| 78 | def is_small_int(self): |
| 79 | """Return true if the op pushes a small integer to the stack""" |
| 80 | if 0x51 <= self <= 0x60 or self == 0: |
| 81 | return True |
| 82 | else: |
| 83 | return False |
| 84 | |
| 85 | def __str__(self): |
| 86 | return repr(self) |