I have a single-threaded IronPython WPF application and if an event handler (FrameworkElement.SizeChanged for example) throws, the exception is just eaten and execution continues without any kind of n
I am trying to use IronPython in the browser and attempting to import external python scripts: <script src=\"ht开发者_如何学Ctp://gestalt.ironpython.net/dlr-latest.js\" type=\"text/javascript\">
I created a Class Library project in Visual Studio 2010 and created added the following VB.Net class:
I\'ve just installed IronPython 2.7 with VS support, and am trying to create a simple prototype WPF application.Something is broken, probably in my installation, and I can\'t figure out how to diagnos
I’ve got a massive memory leak in my program. This is the first time I’ve used IronPython in a tight loop, so I’m wondering if this could be the cause.
I have the following C# code to compile it into MyMath.dll assembly. namespace MyMath { public class Arith {
I tried to use gac开发者_C百科util (mono) for IronPython, but I got the following error. sudo gacutil -i IronPython.dll
I was wondering whether objects serialized using CPython\'s cPickle are readable by using I开发者_开发知识库ronPython\'s cPickle; the objects in question do not require any modules outside of the buil
I have the following IronPython code. class Hello: def __init__(self): pass def add(self, x, y): return (x+y)
I\'m developing a simple Python program with a (dynamic) form interface, but it needs to run on Google App Engine. I understand that IronPython lets one use Visual Studio\'s drag-and-drop interface bu