I'm trying to import a Python module in a C# code like this:
var setup = Python.CreateRuntimeSetup(null);
var runtime = new ScriptRuntime(setup);
var engine = Python.GetEngine(runtime);
var module = engine.ImportModule("mymodule");
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?
Can anyone think of a workaround?