Adds a description to the ``descriptions`` collection. This is the same as calling "foo.descriptions.add(bar)".
(self, description)
| 51 | self.descriptions = value |
| 52 | |
| 53 | def add_description(self, description): |
| 54 | """Adds a description to the ``descriptions`` collection. |
| 55 | |
| 56 | This is the same as calling "foo.descriptions.add(bar)". |
| 57 | """ |
| 58 | self.descriptions.add(description) |
| 59 | |
| 60 | @property |
| 61 | def short_description(self): |