diff options
author | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2014-05-15 19:09:06 +0300 |
---|---|---|
committer | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2014-05-15 19:09:06 +0300 |
commit | ad3baec12f2d86cda58bc2a51173c76b6c335fa2 (patch) | |
tree | 75194c4129349ae73afe213bbe423837cb22e44b /tests/basics/bytes_compare.py | |
parent | 767e45c2901977a687e0def3169c6fd9f3ae3466 (diff) |
sequence: Fix yet another case of improper sequence comparison.
This time, in mp_seq_cmp_bytes(). How many more cases are still lurking?
Diffstat (limited to 'tests/basics/bytes_compare.py')
-rw-r--r-- | tests/basics/bytes_compare.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/basics/bytes_compare.py b/tests/basics/bytes_compare.py index 3804844fe..292267ba7 100644 --- a/tests/basics/bytes_compare.py +++ b/tests/basics/bytes_compare.py @@ -49,3 +49,5 @@ print(b"1" <= b"10") print(b"1" <= b"1/") print(b"10" <= b"1") print(b"1/" <= b"1") + +print(b'o' == b'\n') |