예제 #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)