mirror of
https://github.com/RustPython/RustPython.git
synced 2026-06-02 19:39:49 +09:00
7 lines
270 B
Python
7 lines
270 B
Python
assert b'foobar'.__eq__(2) == NotImplemented
|
|
assert b'foobar'.__ne__(2) == NotImplemented
|
|
assert b'foobar'.__gt__(2) == NotImplemented
|
|
assert b'foobar'.__ge__(2) == NotImplemented
|
|
assert b'foobar'.__lt__(2) == NotImplemented
|
|
assert b'foobar'.__le__(2) == NotImplemented
|