Add exception for invalid expression
This commit is contained in:
parent
027a3ac57a
commit
e3d1870d33
|
@ -40,7 +40,10 @@ class Render(object):
|
|||
else:
|
||||
operandeStack.push(self.render(token)())
|
||||
|
||||
return operandeStack.pop()
|
||||
if len(operandeStack) > 1:
|
||||
raise ValueError("This postfix_tokens is not a valid expression")
|
||||
else:
|
||||
return operandeStack.pop()
|
||||
|
||||
def txt_render(token):
|
||||
def render(*args):
|
||||
|
|
Loading…
Reference in New Issue