Warning, file /education/cantor/src/backends/python/variables_saver.py was not indexed or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).
0001 import shelve 0002 shelvePythonBackend = shelve.open('%1', 'n') 0003 for keyPythonBackend in dir(): 0004 if (not 'PythonBackend' in keyPythonBackend)\ 0005 and (not '__' in keyPythonBackend)\ 0006 and (not '<module ' in str(globals()[keyPythonBackend])): 0007 shelvePythonBackend[keyPythonBackend] = globals()[keyPythonBackend] 0008 shelvePythonBackend.close() 0009 del(shelve) 0010 del(shelvePythonBackend) 0011 del(keyPythonBackend)