Return ``True`` if ``attribute`` is valid
(self, attribute)
| 254 | return bool(self.AllocatedAttributes & attribute) |
| 255 | |
| 256 | def is_valid(self, attribute): |
| 257 | """Return ``True`` if ``attribute`` is valid""" |
| 258 | return bool(self.ValidAttributes & attribute) |
| 259 | |
| 260 | def get_attribute(self, attribute): |
| 261 | if not self.is_allocated(attribute): |
no outgoing calls
no test coverage detected