(self)
| 312 | object.__setattr__(self, 'vtxinwit', vtxinwit) |
| 313 | |
| 314 | def is_null(self): |
| 315 | for n in range(len(self.vtxinwit)): |
| 316 | if not self.vtxinwit[n].is_null(): return False |
| 317 | return True |
| 318 | |
| 319 | # FIXME this cannot be a @classmethod like the others because we need to |
| 320 | # know how many items to deserialize, which comes from len(vin) |