sgzwiz / brython

Automatically exported from code.google.com/p/brython
BSD 3-Clause "New" or "Revised" License
0 stars 1 forks source link

== doesn't work like CPython on dict #10

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
a = {'poide':4,'praf':2}
b = {'poide':4,'praf':2}
log(a == b)

CPython : 
a == b # True

Brython : 
a == b # False

Not that I need it, I just like to test that kind of stuff

Original issue reported on code.google.com by gissehel@gmail.com on 21 Dec 2012 at 7:10

GoogleCodeExporter commented 9 years ago
Thanks for the report, I fixed the bug in the latest version

Original comment by pierre.q...@gmail.com on 21 Dec 2012 at 7:38

GoogleCodeExporter commented 9 years ago
Thanks, nice quick correction !

Still found bugs => Issue #11

Original comment by gissehel@gmail.com on 21 Dec 2012 at 7:51