Salome HOME
Fix single study problem in Python API
[modules/gui.git] / src / PyConsole / PyConsole_Interp.cxx
index 9d3d996caa3976c73a4ed41a16c7d6cbd83e12d9..10e6fa0e623c7dfb1483e5f68a5f155516ccb648 100644 (file)
@@ -77,6 +77,7 @@ bool PyConsole_Interp::initContext()
     PyErr_Print();
     return false;
   }  
-  _context = PyModule_GetDict(m);          // get interpreter dictionnary context
+  PyObject* global_dict = PyModule_GetDict(m);          // get interpreter dictionnary context
+  _context = PyDict_Copy(global_dict);
   return true;
 }