Re: [IronPython] subclasses of list with __mul__ defined

2008-12-09 Thread Dino Viehland
The fix for this is pretty simple. It's going into 2.1 as we speak, and I'll port it back to the 2.0.x branch. Unfortunately at this point I don't think it'll make it into 2.0 final. From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Glenn Jones Sent: Tuesday, December 09, 2008 8:3

Re: [IronPython] IronPython Studio and IronPython 2.0

2008-12-09 Thread Dino Viehland
I don't believe there is right now w/o a bunch of work to update to the new 2.0 hosting APIs. From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Yash Ganthe Sent: Tuesday, December 09, 2008 5:59 AM To: users@lists.ironpython.com Subject: [IronPython] IronPython Studio and IronPython 2

[IronPython] subclasses of list with __mul__ defined

2008-12-09 Thread Glenn Jones
Hi guys, Another issue from our upgrade to IPy2: class thing(list): def __init__(self, value): self.value = value def __mul__(self, other): return self.value * other t1 = thing(3.0) print t1 * 3.0 results in: Traceback (most recent call last): File "testmat.py", line 1

[IronPython] IronPython Studio and IronPython 2.0

2008-12-09 Thread Yash Ganthe
I use IPY 2.0 RC2. I would like to debug through the code in Visual Studio. Can IronPython Studio be configured to use IPY 2.0? Thanks, Yash ___ Users mailing list Users@lists.ironpython.com http://lists.ironpython.com/listinfo.cgi/users-ironpython.com