(file, *, fix_imports=True, encoding="ASCII", errors="strict",
buffers=None)
| 1877 | return res |
| 1878 | |
| 1879 | def _load(file, *, fix_imports=True, encoding="ASCII", errors="strict", |
| 1880 | buffers=None): |
| 1881 | return _Unpickler(file, fix_imports=fix_imports, buffers=buffers, |
| 1882 | encoding=encoding, errors=errors).load() |
| 1883 | |
| 1884 | def _loads(s, /, *, fix_imports=True, encoding="ASCII", errors="strict", |
| 1885 | buffers=None): |
nothing calls this directly
no test coverage detected