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

Method gety

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

Source from the content-addressed store, hash-verified

108 return self.stack[0]
109
110 def gety(self): #get y register
111 try:
112 self.stack[1]
113 except:
114 return "error: stack underflow"
115 return self.stack[1]
116
117 def getz(self): #get z register
118 try:

Callers 6

addMethod · 0.95
subMethod · 0.95
mulMethod · 0.95
divMethod · 0.95
moduloMethod · 0.95
powMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected