Adds a description to the ``short_descriptions`` collection. This is the same as calling "foo.short_descriptions.add(bar)".
(self, description)
| 80 | self.short_descriptions = value |
| 81 | |
| 82 | def add_short_description(self, description): |
| 83 | """Adds a description to the ``short_descriptions`` collection. |
| 84 | |
| 85 | This is the same as calling "foo.short_descriptions.add(bar)". |
| 86 | """ |
| 87 | self.short_descriptions.add(description) |