return the top item on the stack and removes it from the stack
(self)
| 340 | return self.op_stack[-3] |
| 341 | |
| 342 | def pop(self): |
| 343 | """ |
| 344 | return the top item on the stack and removes it from the stack |
| 345 | """ |
| 346 | self.current_i += 1 |
| 347 | try: |
| 348 | return self.op_stack[-self.current_i] |
| 349 | except ValueError: |
| 350 | # raised when "PyObject is NULL" |
| 351 | return self.NULL |
| 352 | |
| 353 | def pop_n(self, n: int) -> List: |
| 354 | """ |
no outgoing calls
no test coverage detected