]> SALOME platform Git repositories - modules/gui.git/commitdiff
Salome HOME
SAN: Fix for RH 8
authorsmh <smh@opencascade.com>
Tue, 31 May 2005 11:04:36 +0000 (11:04 +0000)
committersmh <smh@opencascade.com>
Tue, 31 May 2005 11:04:36 +0000 (11:04 +0000)
src/SalomeApp/SalomeApp_PyInterp.cxx
src/SalomeApp/SalomeApp_PyInterp.h

index 93520c9c4fe9349e9de84008e5b11c5320959a62..1adef677b6aa24e2ab9f5edb1798386898aae575 100755 (executable)
@@ -36,8 +36,6 @@ static int MYDEBUG = 0;
 static int MYDEBUG = 0;
 #endif
 
-PyObject *SalomeApp_PyInterp::salome_shared_modules_module = NULL;
-
 /*!
  * constructor : multi Python interpreter, one per SALOME study.
  * calls initialize method defined in base class, which calls virtual methods
@@ -80,21 +78,6 @@ bool SalomeApp_PyInterp::initContext()
   if ( !PythonConsole_PyInterp::initContext() )
     return false;
 
-  /*
-    salome_shared_modules should be imported only once
-  */
-  if ( !salome_shared_modules_module )
-  {
-    salome_shared_modules_module = PyImport_ImportModule( "salome_shared_modules" );
-    if ( !salome_shared_modules_module )
-    {
-           INFOS( "SalomeApp_PyInterp::initContext() - salome_shared_modules_module == NULL" );
-           PyErr_Print();
-           PyErr_Clear();
-           return false;
-    }
-  }
-
   // Debut modif CCAR
   // Import special module to change the import mechanism
   PyObjWrapper m1( PyImport_ImportModule( "import_hook" ) );
index e03c4ff05d3c9645929ced074da0f0f98fcc83bd..065f8efd076ae06d1a4eb50c11002ef0f36836b9 100755 (executable)
@@ -34,8 +34,6 @@
 class SalomeApp_PyInterp : public PythonConsole_PyInterp
 {
 public:
-  static PyObject *salome_shared_modules_module;
-
   SalomeApp_PyInterp();
   virtual ~SalomeApp_PyInterp();