All Questions
2 questions
6
votes
1
answer
564
views
What happens when import a module in ironpython?
In CPython, I think, import means compile the py file to a pyc file and execute the file in the current frame, and the next time CPython will load the pyc file directly without compiling again. What ...
0
votes
1
answer
915
views
Having trouble importing C# interface into Python
I've been doing a bunch of searching and reading today, and haven't figured out the right way to implement something, or even determining if it's possible.
Here's the gist of what I'm attempting ...