]> SALOME platform Git repositories - modules/yacs.git/blobdiff - src/runtime/TypeConversions.cxx
Salome HOME
Correction of bug when pyobj hides a pystring with foreach node.
[modules/yacs.git] / src / runtime / TypeConversions.cxx
index 2161c6e0d9a5414fc6e26785a3f36dbf9658fea4..740fe72a409769cf8795598959d939bb053dcd54 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2006-2014  CEA/DEN, EDF R&D
+// Copyright (C) 2006-2015  CEA/DEN, EDF R&D
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Lesser General Public
@@ -774,7 +774,7 @@ namespace YACS
     {
       static inline std::string convert(const TypeCode *t,PyObject* o,void*,int protocol)
         {
-          if (PyString_Check(o))
+          if (PyString_Check(o) && strncmp(t->id(),"python",6)!=0)
             {
               // the objref is used by Python as a string (prefix:value) keep it as a string
               return PyString_AS_STRING(o);