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.
___
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
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/
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