(self, attribute_name, value)
| 558 | if self._get_attribute(name) is not None]) |
| 559 | |
| 560 | def _set_attribute(self, attribute_name, value): |
| 561 | self._check_valid_attribute(attribute_name) |
| 562 | self._attributes[attribute_name].value = value |
| 563 | self.namescope.increment_revision() |
| 564 | |
| 565 | def set_attributes(self, **kwargs): |
| 566 | if constants.DCLASS in kwargs: |
no test coverage detected