added chemtools to chem module in capa, and added it to global context

This commit is contained in:
Александр
2012-10-16 18:45:25 +03:00
parent 6306d98007
commit e6eedb9293
2 changed files with 6 additions and 1 deletions

View File

@@ -32,6 +32,8 @@ from xml.sax.saxutils import unescape
import chem
import chem.chemcalc
import chem.chemtools
import calc
from correctmap import CorrectMap
import eia
@@ -78,7 +80,8 @@ global_context = {'random': random,
'scipy': scipy,
'calc': calc,
'eia': eia,
'chemcalc': chem.chemcalc}
'chemcalc': chem.chemcalc,
'chemtools': chem.chemtools}
# These should be removed from HTML output, including all subelements
html_problem_semantics = ["codeparam", "responseparam", "answer", "script", "hintgroup"]

View File

@@ -0,0 +1,2 @@
def vsepr_grader():
pass