Home
last modified time | relevance | path

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

/external/python/cpython2/Lib/
Dpickle.py745 module = whichmodule(obj, name)
805 def whichmodule(func, funcname): function
/external/python/cpython3/Lib/
Dpickle.py302 def whichmodule(obj, name): function
949 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.c1751 whichmodule(PyObject *global, PyObject *dotted_path) in whichmodule() function
3325 module_name = whichmodule(obj, dotted_path); in save_global()
/external/python/cpython3/Misc/NEWS.d/
D3.5.0a1.rst1921 Avoid RuntimeError in pickle.whichmodule() when sys.modules is mutated while
/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.