List of charsets this client supports as :class:`~werkzeug.datastructures.CharsetAccept` object.
(self)
| 371 | |
| 372 | @cached_property |
| 373 | def accept_charsets(self) -> CharsetAccept: |
| 374 | """List of charsets this client supports as |
| 375 | :class:`~werkzeug.datastructures.CharsetAccept` object. |
| 376 | """ |
| 377 | return parse_accept_header(self.headers.get("Accept-Charset"), CharsetAccept) |
| 378 | |
| 379 | @cached_property |
| 380 | def accept_encodings(self) -> Accept: |
nothing calls this directly
no test coverage detected