Re: [IronPython] Crash on method call

2005-11-23 Thread Dino Viehland
Thanks for the bug report Seo.  We've had a similar bug in our database that I believe I fixed last week (I'm away currently so I can't verify) but I will confirm this next week after the Thanksgiving holiday and let you know if it'll be present in our next release. ___

[IronPython] Crash on method call

2005-11-23 Thread Seo Sanghyeon
With following code, IronPython 0.9.5 crashes with the message "Unhandled Exception: no value for arg". class C: def foo(self, arg, bar): pass obj = C() obj.foo(None, bar=1) Above testcase was reduced from Python standard library's optparse.py, line 1120, in Python 2.4.2. Seo Sanghy

Re: [IronPython] status of 0.9.5

2005-11-23 Thread Martin Maly
Great question. Actually, for the purpose of tracking what tests pass/fail/haven't run yet ... We created an IronPython wiki on Channel9. Check the wiki at: http://channel9.msdn.com/wiki/default.aspx/IronPython.HomePage And the Python 2.4 test list at: http://channel9.msdn.com/wiki/default.aspx/

[IronPython] Events and the += operator

2005-11-23 Thread Jonathan Jacobs
Hi, (I did a couple of searches on the archives and checked the bug tracker but still found nothing directly relating to this. Hopefully I didn't miss anything.) I'm having a problem trying to attach an event handler to System.Windows.Forms.Application.Idle: >>> System.Windows.Forms.Applicat