mirror of
https://github.com/RustPython/RustPython.git
synced 2026-06-02 19:39:49 +09:00
6 lines
179 B
Python
6 lines
179 B
Python
import _operator
|
|
|
|
assert _operator._compare_digest("abcdef", "abcdef")
|
|
assert not _operator._compare_digest("abcdef", "abc")
|
|
assert not _operator._compare_digest("abc", "abcdef")
|