def test_bytesio(self, val): f = py.io.BytesIO() execnet.dump(f, val) read = py.io.BytesIO(f.getvalue()) val2 = execnet.load(read) assert val == val2