Re: [IronPython] Comparing clr objects in lists

2006-10-05 Thread Andrzej Krzywda
Dino Viehland wrote: > This is definitely a bug - I've opened CodePlex issue 3982 to track this > Any input on how we should prioritize this? > It doesn't block us, no urgency from our side. We worked around this problem by comparing all elements in lists instead of comparing lists. Andrzej

Re: [IronPython] Comparing clr objects in lists

2006-10-03 Thread Dino Viehland
7;re doing an equality check instead of a comparison). Any input on how we should prioritize this? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Andrzej Krzywda Sent: Tuesday, October 03, 2006 5:35 AM To: Discussion of IronPython Subject: [IronPython] C

Re: [IronPython] Comparing clr objects in lists

2006-10-03 Thread Fuzzyman
Andrzej Krzywda wrote: >Hello all, > >We found an issue with comparing clr objects in lists. > >IronPython 1.0.60816 on .NET 2.0.50727.42 >Copyright (c) Microsoft Corporation. All rights reserved. > >>> import clr > >>> clr.AddReference('System.Drawing') > >>> from System.Drawing import Color > >>

[IronPython] Comparing clr objects in lists

2006-10-03 Thread Andrzej Krzywda
Hello all, We found an issue with comparing clr objects in lists. IronPython 1.0.60816 on .NET 2.0.50727.42 Copyright (c) Microsoft Corporation. All rights reserved. >>> import clr >>> clr.AddReference('System.Drawing') >>> from System.Drawing import Color >>> >>> Color.Red == Color.Red True