Changeset 320 for pkpgcounter/trunk/pkpgpdls/pclxl.py
- Timestamp:
- 02/10/06 11:24:07 (19 years ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
pkpgcounter/trunk/pkpgpdls/pclxl.py
r318 r320 260 260 break 261 261 else : 262 length = self.tags[ord(self.minfile[pos-offset])] 262 pos -= offset 263 length = self.tags[ord(self.minfile[pos])] 263 264 if callable(length) : 264 length = length(pos-offset+1) 265 pos -= offset 266 if funcid == 0x92 : 265 length = length(pos+1) 266 if funcid == 0x92 : # we want to skip these blocks 267 267 try : 268 268 return unpack(self.unpackType[length], self.minfile[pos+1:pos+length+1])[0]