Function
_dump
(obj, file, protocol=None, *, fix_imports=True, buffer_callback=None)
Source from the content-addressed store, hash-verified
| 1865 | # Shorthands |
| 1866 | |
| 1867 | def _dump(obj, file, protocol=None, *, fix_imports=True, buffer_callback=None): |
| 1868 | _Pickler(file, protocol, fix_imports=fix_imports, |
| 1869 | buffer_callback=buffer_callback).dump(obj) |
| 1870 | |
| 1871 | def _dumps(obj, protocol=None, *, fix_imports=True, buffer_callback=None): |
| 1872 | f = io.BytesIO() |
Callers
nothing calls this directly
Tested by
no test coverage detected