py: Implement more complete bytes comparison handling.

This commit is contained in:
Paul Sokolovsky
2014-05-15 20:58:40 +03:00
parent ad3baec12f
commit 70328e419a
2 changed files with 18 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
import array
print(b"1" == 1)
print(b"123" == bytearray(b"123"))
print(b"123" == "123")
# CPyhon gives False here
#print(b"\x01\x02\x03" == array.array("B", [1, 2, 3]))