(self)
| 464 | ) |
| 465 | |
| 466 | def __repr__(self) -> str: |
| 467 | return f"{self.__class__.__name__}({self._arguments_repr()})" |
| 468 | |
| 469 | def with_options(self, **kwargs: Any) -> CodecOptions: |
| 470 | """Make a copy of this CodecOptions, overriding some options:: |
nothing calls this directly
no test coverage detected