pypy.module._pickle.test.apptest_pickle:test_function
def test_function():
for method, args in (
({1, 2}.__contains__, (2,)),
(set.__contains__, ({1, 2}, 2)),
):
for proto in protocols:
data = dumps(method, proto)
pydata = dumps_py(method, proto)
> assert data == pydata
E AssertionError: assert b'\x80\x03cbu...6q\x03Rq\x04.' == b'\x80\x03cbu...01\x86Rq\x02.'
E At index 36 diff: b'q' != b'X'
E Use -v to get the full diff
../build/pypy/module/_pickle/test/apptest_pickle.py:383: AssertionError
builder: pypy-c-jit-linux-x86-64 build #11857+
test: pypy.module._pickle.test.apptest_pickle:test_function