python-bindings

How to add a python binding to C# ?

When you want to call C from python, you write a module like this: http://docs.python.org/extending/extending.html Now, I have a question: I want to write a module for use in Python with C#. How can I get C# to interact with native Python ? (Note: I'm not interested in Python.NET or IronPython). ...