Salome HOME
[bos #37406][CEA] Fixed segfault in YACS_YacsRuntimeTest on UB22,FD36 and FD37 by...
[modules/yacs.git] / src / runtime / PythonInitConv.cxx
index 3f67346dc345859f3b85482d707dc565ee5c274a..588c21a31e662cc86ae682da0757ec863fade94a 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2006-2019  CEA/DEN, EDF R&D
+// Copyright (C) 2006-2023  CEA, EDF
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Lesser General Public
@@ -39,7 +39,7 @@ PyInit::PyInit(InputPyPort* p)
  *   \param data : PyObject object as a void * pointer
  */
 
-void PyInit::put(const void *data) throw(ConversionException)
+void PyInit::put(const void *data)
 {
   put((PyObject *)data);
 }
@@ -48,7 +48,7 @@ void PyInit::put(const void *data) throw(ConversionException)
 /*!
  *   \param data : PyObject object
  */
-void PyInit::put(PyObject *data) throw(ConversionException)
+void PyInit::put(PyObject *data)
 {
   DEBTRACE("PyInit::put(PyObject *data)"<<data->ob_refcnt);
   InterpreterUnlocker l;