Importing a python module to .net - "No module named signal" - Stack Overflow most recent 30 from stackoverflow.com2009-12-15T19:52:34Zhttp://stackoverflow.com/feeds/question/847109http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/847109/importing-a-python-module-to-net-no-module-named-signal0Importing a python module to .net - "No module named signal"Meidan Alon2009-05-11T07:43:22Z2009-05-11T08:44:30Z
<p>I'm trying to import a pyhton module in a C# code like this:</p>
<pre><code> var setup = Python.CreateRuntimeSetup(null);
var runtime = new ScriptRuntime(setup);
var engine = Python.GetEngine(runtime);
var module = engine.ImportModule("mymodule");
</code></pre>
<p>but I get an error saying "No module named signal", does this mean that IronPython just can't load the signal module, is it OS specific?</p>
<p>Can anyone think of a workaround?</p>
http://stackoverflow.com/questions/847109/importing-a-python-module-to-net-no-module-named-signal/847230#8472301Answer by Nico for Importing a python module to .net - "No module named signal"Nico2009-05-11T08:44:30Z2009-05-11T08:44:30Z<p>The 'signal' module is used to handle all that has to do with ... you guessed it: signals. There are special "messages" that the OS send to a process to tell it something: eg. Break, Kill, Terminate, etc... The exact set of message are generally OS specific, but as the <a href="http://docs.python.org/library/signal.html" rel="nofollow">signals</a> python manual page states, python emulates BSD style interface, except for SIGCHLD.</p>
<p>Now, in CPython, the 'signal' module is a built-in as far as I can remember, it could possibly be that IronPython has not implemented it, in fact, a quick google and look on IronPython's site leads to this: <a href="http://ironpython.codeplex.com/Wiki/View.aspx?title=IPy1.0.xCPyDifferences" rel="nofollow">IronPython and CPython differences</a> (read it, in particular, the extension modules part!)</p>
<p>Possible workaround: edit your module not to use signals when in IronPython</p>