예제 #1
0
def test_pack_json():
    assert Buffer.pack_json({"spam": "eggs"}) == b'\x10{"spam": "eggs"}'
예제 #2
0
파일: chat.py 프로젝트: vcokltfre/quarry
 def to_bytes(self):
     return Buffer.pack_json(self.value)
예제 #3
0
파일: chat.py 프로젝트: barneygale/quarry
 def to_bytes(self):
     return Buffer.pack_json(self.value)