(value: Any, fp: IO[str], **kwargs: NoReturn)
| 109 | |
| 110 | # NoReturn here is to make this a mypy error to pass kwargs, since they are currently silently dropped |
| 111 | def dump(value: Any, fp: IO[str], **kwargs: NoReturn) -> None: |
| 112 | for chunk in _default_encoder.iterencode(value): |
| 113 | fp.write(chunk) |
| 114 | |
| 115 | |
| 116 | # NoReturn here is to make this a mypy error to pass kwargs, since they are currently silently dropped |
nothing calls this directly
no test coverage detected