File indexing completed on 2024-11-10 09:25:43
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)