Re: [Ironpython-users] bytearray comparison failure

2014-08-18 Thread Daniel Fernandez
else bytes = other as IList; it works now below. Dany Date: Mon, 18 Aug 2014 12:49:04 -0700 Subject: Re: [Ironpython-users] bytearray comparison failure From: [email protected] To: [email protected] CC: [email protected] ByteArray.cs the Equals method. O

Re: [Ironpython-users] bytearray comparison failure

2014-08-18 Thread Slide
> Dany > > ---------- > Date: Mon, 18 Aug 2014 12:49:04 -0700 > Subject: Re: [Ironpython-users] bytearray comparison failure > From: [email protected] > To: [email protected] > CC: [email protected] > > > ByteArray.cs the Equals

Re: [Ironpython-users] bytearray comparison failure

2014-08-18 Thread Daniel Fernandez
; it works now below. Dany Date: Mon, 18 Aug 2014 12:49:04 -0700 Subject: Re: [Ironpython-users] bytearray comparison failure From: [email protected] To: [email protected] CC: [email protected] ByteArray.cs the Equals method. On Mon, Aug 18, 2014 at 11:50 AM, Daniel

Re: [Ironpython-users] bytearray comparison failure

2014-08-18 Thread Slide
ByteArray.cs the Equals method. On Mon, Aug 18, 2014 at 11:50 AM, Daniel Fernandez < [email protected]> wrote: > Hi All, > > I ran into an issue comparing bytearray with a string value. I created an > issue 35470 on codeplex. The code snippet that can reproduce the issue is > x = bytear

[Ironpython-users] bytearray comparison failure

2014-08-18 Thread Daniel Fernandez
Hi All, I ran into an issue comparing bytearray with a string value. I created an issue 35470 on codeplex. The code snippet that can reproduce the issue isx = bytearray(b'Danny')y = 'Danny'x == y IronPython 2.7.5b3 this is False and CPython 2.7.8 is True. My question is where in the IronPython c