(obj, **kwargs)
| 4616 | def test_dump_load_oob_buffers(self): |
| 4617 | # Test out-of-band buffers (PEP 574) with top-level dump() and load() |
| 4618 | def dumps(obj, **kwargs): |
| 4619 | f = io.BytesIO() |
| 4620 | self.dump(obj, f, **kwargs) |
| 4621 | return f.getvalue() |
| 4622 | |
| 4623 | def loads(data, **kwargs): |
| 4624 | f = io.BytesIO(data) |
no test coverage detected