Exemple #1
0
 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
Exemple #2
0
 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