コード例 #1
0
ファイル: packets.py プロジェクト: imoyer/pygestalt
 def _decode_(self, decodePacket):
     """Decodes the provided packet snippet into a string.
     
     decodePacket -- the list to be converted into a string.
     """
     return utilities.listToString(decodePacket)
コード例 #2
0
ファイル: packets.py プロジェクト: imoyer/pygestalt
 def toString(self):
     """A shortcut to get the serialized packet in the format of a string."""
     return utilities.listToString(self)