minor cleanup
This commit is contained in:
parent
64946dc239
commit
a2cf184301
|
|
@ -317,6 +317,10 @@ def joy(stack, expression, dictionary):
|
||||||
return stack, dictionary
|
return stack, dictionary
|
||||||
|
|
||||||
|
|
||||||
|
class UnknownSymbolError(KeyError):
|
||||||
|
pass
|
||||||
|
|
||||||
|
|
||||||
'''
|
'''
|
||||||
███████╗████████╗ █████╗ ██████╗██╗ ██╗
|
███████╗████████╗ █████╗ ██████╗██╗ ██╗
|
||||||
██╔════╝╚══██╔══╝██╔══██╗██╔════╝██║ ██╔╝
|
██╔════╝╚══██╔══╝██╔══██╗██╔════╝██║ ██╔╝
|
||||||
|
|
@ -1287,10 +1291,6 @@ class NotABoolError(Exception):
|
||||||
pass
|
pass
|
||||||
|
|
||||||
|
|
||||||
class UnknownSymbolError(KeyError):
|
|
||||||
pass
|
|
||||||
|
|
||||||
|
|
||||||
def isnt_int(i):
|
def isnt_int(i):
|
||||||
'''
|
'''
|
||||||
Raise NotAnIntError if i isn't an integer.
|
Raise NotAnIntError if i isn't an integer.
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue