| 704 | |
| 705 | |
| 706 | class Attribute(TokenList): |
| 707 | |
| 708 | token_type = 'attribute' |
| 709 | |
| 710 | @property |
| 711 | def stripped_value(self): |
| 712 | for token in self: |
| 713 | if token.token_type.endswith('attrtext'): |
| 714 | return token.value |
| 715 | |
| 716 | class Section(TokenList): |
| 717 |
no outgoing calls