Lines Matching defs:module

86 "to map the new Python 3 names to the old module names used in Python\n"
231 "Return an object from a specified module.\n"
233 "If necessary, the module will be imported. Subclasses may override\n"
457 "dump($module, /, obj, file, protocol=None, *, fix_imports=True,\n"
481 "to map the new Python 3 names to the old module names used in Python\n"
492 _pickle_dump_impl(PyObject *module, PyObject *obj, PyObject *file,
497 _pickle_dump(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)
540 return_value = _pickle_dump_impl(module, obj, file, protocol, fix_imports, buffer_callback);
547 "dumps($module, /, obj, protocol=None, *, fix_imports=True,\n"
563 "try to map the new Python 3 names to the old module names used in\n"
574 _pickle_dumps_impl(PyObject *module, PyObject *obj, PyObject *protocol,
578 _pickle_dumps(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)
619 return_value = _pickle_dumps_impl(module, obj, protocol, fix_imports, buffer_callback);
626 "load($module, /, file, *, fix_imports=True, encoding=\'ASCII\',\n"
658 _pickle_load_impl(PyObject *module, PyObject *file, int fix_imports,
663 _pickle_load(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)
731 return_value = _pickle_load_impl(module, file, fix_imports, encoding, errors, buffers);
738 "loads($module, data, /, *, fix_imports=True, encoding=\'ASCII\',\n"
761 _pickle_loads_impl(PyObject *module, PyObject *data, int fix_imports,
766 _pickle_loads(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)
834 return_value = _pickle_loads_impl(module, data, fix_imports, encoding, errors, buffers);