This repository has been archived on 2023-04-13. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
CloudBot/disabled_stuff/python.py

10 lines
171 B
Python
Raw Permalink Normal View History

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