(self)
| 810 | yield name, value |
| 811 | |
| 812 | def __str__(self): |
| 813 | params = [] |
| 814 | for name, value in self.params: |
| 815 | if value: |
| 816 | params.append('{}={}'.format(name, quote_string(value))) |
| 817 | else: |
| 818 | params.append(name) |
| 819 | params = '; '.join(params) |
| 820 | return ' ' + params if params else '' |
| 821 | |
| 822 | |
| 823 | class ParameterizedHeaderValue(TokenList): |
nothing calls this directly
no test coverage detected