Return true if the op pushes a small integer to the stack
(self)
| 64 | return int(self - OP_1+1) |
| 65 | |
| 66 | def is_small_int(self): |
| 67 | """Return true if the op pushes a small integer to the stack""" |
| 68 | if 0x51 <= self <= 0x60 or self == 0: |
| 69 | return True |
| 70 | else: |
| 71 | return False |
| 72 | |
| 73 | def __str__(self): |
| 74 | return repr(self) |