Home
last modified time | relevance | path

Searched refs:whichmodule (Results 1 – 9 of 9) sorted by relevance

/external/python/cpython3/Misc/NEWS.d/
D3.9.1.rst73 We fixed an issue in `pickle.whichmodule` in which importing
D3.5.0a1.rst1921 Avoid RuntimeError in pickle.whichmodule() when sys.modules is mutated while
/external/python/cpython2/Lib/
Dpickle.py745 module = whichmodule(obj, name)
805 def whichmodule(func, funcname): function
/external/python/cpython3/Lib/
Dpickle.py335 def whichmodule(obj, name): function
1064 module_name = whichmodule(obj, name)
/external/python/cpython2/Modules/
DcPickle.c899 whichmodule(PyObject *global, PyObject *global_name) in whichmodule() function
2109 if (!( module = whichmodule(class, name))) in save_inst()
2210 if (!( module = whichmodule(args, global_name))) in save_global()
/external/python/cpython3/Modules/
D_pickle.c1907 whichmodule(PyObject *global, PyObject *dotted_path) in whichmodule() function
3615 module_name = whichmodule(obj, dotted_path); in save_global()
/external/python/cpython3/Tools/c-analyzer/
Dknown.tsv1251 Modules/_pickle.c whichmodule PyId___module__ variable _Py_IDENTIFIER(__module__)
/external/python/cpython2/Misc/
DHISTORY4585 defined in Python. This attribute is used by pickle.whichmodule(),
4586 which changes the behavior of whichmodule slightly. In Python 2.2
4587 whichmodule() returns "__main__" for functions that are not defined
4589 Now whichmodule() will return the proper module name.
/external/python/cpython3/Misc/
DHISTORY1212 - Issue #21905: Avoid RuntimeError in pickle.whichmodule() when sys.modules
21969 defined in Python. This attribute is used by pickle.whichmodule(),
21970 which changes the behavior of whichmodule slightly. In Python 2.2
21971 whichmodule() returns "__main__" for functions that are not defined
21973 Now whichmodule() will return the proper module name.