(file, *, fix_imports=True, encoding="ASCII", errors="strict",
buffers=None)
| 1760 | return res |
| 1761 | |
| 1762 | def _load(file, *, fix_imports=True, encoding="ASCII", errors="strict", |
| 1763 | buffers=None): |
| 1764 | return _Unpickler(file, fix_imports=fix_imports, buffers=buffers, |
| 1765 | encoding=encoding, errors=errors).load() |
| 1766 | |
| 1767 | def _loads(s, /, *, fix_imports=True, encoding="ASCII", errors="strict", |
| 1768 | buffers=None): |
nothing calls this directly
no test coverage detected