Symbolic response doesn't need to pre-import symmath any more, I think?

This commit is contained in:
Ned Batchelder
2013-02-19 13:42:47 -05:00
parent e8da1b8f61
commit 716a97ea59

View File

@@ -1200,8 +1200,6 @@ class SymbolicResponse(CustomResponse):
def setup_response(self):
self.xml.set('cfn', 'symmath_check')
code = "from symmath import *"
exec code in self.context, self.context
CustomResponse.setup_response(self)
#-----------------------------------------------------------------------------