Append s to end of data & increment offset
(self,s)
| 82 | self.data += struct.pack(fmt,*args) |
| 83 | |
| 84 | def append(self,s): |
| 85 | """ |
| 86 | Append s to end of data & increment offset |
| 87 | """ |
| 88 | self.offset += len(s) |
| 89 | self.data += s |
| 90 | |
| 91 | def update(self,ptr,fmt,*args): |
| 92 | """ |
no outgoing calls