Lines Matching refs:fix_imports
190 .. function:: dump(obj, file, protocol=None, \*, fix_imports=True)
205 If *fix_imports* is true and *protocol* is less than 3, pickle will try to
209 .. function:: dumps(obj, protocol=None, \*, fix_imports=True)
214 Arguments *protocol* and *fix_imports* have the same meaning as in
217 .. function:: load(file, \*, fix_imports=True, encoding="ASCII", errors="strict")
233 Optional keyword arguments are *fix_imports*, *encoding* and *errors*,
235 by Python 2. If *fix_imports* is true, pickle will try to map the old
244 .. function:: loads(bytes_object, \*, fix_imports=True, encoding="ASCII", errors="strict")
253 Optional keyword arguments are *fix_imports*, *encoding* and *errors*,
255 by Python 2. If *fix_imports* is true, pickle will try to map the old
293 .. class:: Pickler(file, protocol=None, \*, fix_imports=True)
307 If *fix_imports* is true and *protocol* is less than 3, pickle will try to
362 .. class:: Unpickler(file, \*, fix_imports=True, encoding="ASCII", errors="strict")
375 Optional keyword arguments are *fix_imports*, *encoding* and *errors*,
377 by Python 2. If *fix_imports* is true, pickle will try to map the old