9 lines
171 B
Python
9 lines
171 B
Python
from util import hook
|
|
from util.pyexec import eval_py
|
|
|
|
|
|
@hook.command
|
|
def python(inp):
|
|
"""python <prog> -- Executes <prog> as Python code."""
|
|
|
|
return eval_py(inp)
|