| 711 | |
| 712 | |
| 713 | class Attribute(TokenList): |
| 714 | |
| 715 | token_type = 'attribute' |
| 716 | |
| 717 | @property |
| 718 | def stripped_value(self): |
| 719 | for token in self: |
| 720 | if token.token_type.endswith('attrtext'): |
| 721 | return token.value |
| 722 | |
| 723 | class Section(TokenList): |
| 724 |
no outgoing calls
searching dependent graphs…