MCPcopy Create free account
hub / github.com/ActiveState/code / getx

Method getx

recipes/Python/59884_RPN_Stack_class/recipe-59884.py:103–108  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

101class RPN_Stack(Stack):
102
103 def getx(self): #get x register (bottom)
104 try:
105 self.stack[0]
106 except:
107 return "error: stack underflow"
108 return self.stack[0]
109
110 def gety(self): #get y register
111 try:

Callers 15

addMethod · 0.95
subMethod · 0.95
mulMethod · 0.95
divMethod · 0.95
moduloMethod · 0.95
powMethod · 0.95
negMethod · 0.95
sinMethod · 0.95
cosMethod · 0.95
tanMethod · 0.95
arcsinMethod · 0.95
arccosMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected