Changeset 424 for pkpgcounter/trunk/pkpgpdls/pclxl.py
- Timestamp:
- 09/15/06 22:41:57 (18 years ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
pkpgcounter/trunk/pkpgpdls/pclxl.py
r417 r424 216 216 217 217 def array_16(self, nextpos) : 218 """Handles bytearrays."""218 """Handles 16 bits arrays.""" 219 219 return self.array_Generic(nextpos, 2) 220 220 221 221 def array_32(self, nextpos) : 222 """Handles bytearrays."""222 """Handles 32 bits arrays.""" 223 223 return self.array_Generic(nextpos, 4) 224 224