This repository has been archived on 2023-04-13. You can view files and clone it, but cannot push or open issues or pull requests.
CloudBot/disabled_stuff/python.py

10 lines
171 B
Python
Raw Permalink Normal View History

from util import hook
2013-12-12 07:00:14 +01:00
from util.pyexec import eval_py
2011-11-20 10:23:31 +01:00
2011-11-20 10:23:31 +01:00
@hook.command
def python(inp):
"""python <prog> -- Executes <prog> as Python code."""
2011-11-20 10:23:31 +01:00
return eval_py(inp)