Just changed some inserts into _mathEnv to be in the initial declaration.

This commit is contained in:
Jeremy Fincher 2003-04-11 20:04:43 +00:00
parent fd4c20c258
commit b24d360775
1 changed files with 1 additions and 3 deletions

View File

@ -324,11 +324,9 @@ class FunCommands(callbacks.Privmsg):
# Then we delete all square brackets, underscores, and whitespace, so no
# one can do list comprehensions or call __...__ functions.
###
_mathEnv = {}
_mathEnv = {'__builtins__': new.module('__builtins__'), 'i': 1j}
_mathEnv.update(math.__dict__)
_mathEnv.update(cmath.__dict__)
_mathEnv['i'] = 1j
_mathEnv['__builtins__'] = new.module('__builtins__')
_mathInt = re.compile(r'(?<!\d|\.)(\d+)(?!\d+|\.|\.\d+)')
_mathHex = re.compile(r'(0x[A-Fa-f\d]+)')
_mathOctal = re.compile(r'(^|[^\dA-Fa-f])(0[0-7]+)')