def test_pickle(self):
import pickle
self.compile("mypoint.capnp", """
@0xbf5147cbbecf40c1;
struct Point {
x @0 :Int64;
y @1 :Int64;
}
""")
mypoint = self.import_('mypoint')
p1 = mypoint.Point(1, 2)
for proto in (0, pickle.HIGHEST_PROTOCOL):
s = pickle.dumps(p1, proto)
p2 = pickle.loads(s)
assert p2.x == 1
assert p2.y == 2
评论列表
文章目录