(self)
| 821 | yield name, value |
| 822 | |
| 823 | def __str__(self): |
| 824 | params = [] |
| 825 | for name, value in self.params: |
| 826 | if value: |
| 827 | params.append('{}={}'.format(name, quote_string(value))) |
| 828 | else: |
| 829 | params.append(name) |
| 830 | params = '; '.join(params) |
| 831 | return ' ' + params if params else '' |
| 832 | |
| 833 | |
| 834 | class ParameterizedHeaderValue(TokenList): |
nothing calls this directly
no test coverage detected