| 727 | |
| 728 | |
| 729 | class Value(TokenList): |
| 730 | |
| 731 | token_type = 'value' |
| 732 | |
| 733 | @property |
| 734 | def stripped_value(self): |
| 735 | token = self[0] |
| 736 | if token.token_type == 'cfws': |
| 737 | token = self[1] |
| 738 | if token.token_type.endswith( |
| 739 | ('quoted-string', 'attribute', 'extended-attribute')): |
| 740 | return token.stripped_value |
| 741 | return self.value |
| 742 | |
| 743 | |
| 744 | class MimeParameters(TokenList): |
no outgoing calls
no test coverage detected
searching dependent graphs…