Re: [IronPython] [Hosting] Cannot convert callable class to delegate

2008-12-01 Thread Jeff Hardy
On Mon, Dec 1, 2008 at 12:26 PM, Dino Viehland <[EMAIL PROTECTED]> wrote: > Thanks for reporting & opening the bug. The fix for this is likely fairly > easy but I don't think we'd spin a new 2.0 build for just this issue because > it isn't really blocking anything as you have a work around. > >

Re: [IronPython] [Hosting] Cannot convert callable class to delegate

2008-12-01 Thread Dino Viehland
lto:[EMAIL PROTECTED] On Behalf Of Jeff Hardy Sent: Saturday, November 22, 2008 10:34 AM To: Discussion of IronPython Subject: [IronPython] [Hosting] Cannot convert callable class to delegate Hi, Attempting to convert a class with a __call__() member to a delagte causes an ArgumentNullException; pres

Re: [IronPython] [Hosting] Cannot convert callable class to delegate

2008-11-24 Thread Kar, Sujit
- Original Message - From: [EMAIL PROTECTED] <[EMAIL PROTECTED]> To: Discussion of IronPython Sent: Sat Nov 22 13:33:54 2008 Subject: [IronPython] [Hosting] Cannot convert callable class to delegate Hi, Attempting to convert a class with a __call__() member to a delagte cau

[IronPython] [Hosting] Cannot convert callable class to delegate

2008-11-22 Thread Jeff Hardy
Hi, Attempting to convert a class with a __call__() member to a delagte causes an ArgumentNullException; presumably it should create a delegate, as it is a valid callable object. It can be worked around be using a function that forwards to the class, but it's an annoyance to have to do that. I hav