diff --git a/plugins/Math.py b/plugins/Math.py index 92f672333..fe16dc91a 100644 --- a/plugins/Math.py +++ b/plugins/Math.py @@ -115,7 +115,10 @@ class Math(callbacks.Privmsg): """ Returns the value of the evaluted . The syntax is - Python syntax; the type of arithmetic is floating point. + Python syntax; the type of arithmetic is floating point. Floating + point arithmetic is used in order to prevent a user from being able to + crash to the bot with something like 10**10**10**10. One consequence + is that large values such as 10**24 might not be exact. """ text = privmsgs.getArgs(args) text = text.translate(string.ascii, '_[] \t')