(file, *, fix_imports=True, encoding="ASCII", errors="strict",
buffers=None)
| 1908 | return res |
| 1909 | |
| 1910 | def _load(file, *, fix_imports=True, encoding="ASCII", errors="strict", |
| 1911 | buffers=None): |
| 1912 | return _Unpickler(file, fix_imports=fix_imports, buffers=buffers, |
| 1913 | encoding=encoding, errors=errors).load() |
| 1914 | |
| 1915 | def _loads(s, /, *, fix_imports=True, encoding="ASCII", errors="strict", |
| 1916 | buffers=None): |
nothing calls this directly
no test coverage detected
searching dependent graphs…