Searched refs:whichmodule (Results 1 – 7 of 7) sorted by relevance
/external/python/cpython2/Lib/ |
D | pickle.py | 745 module = whichmodule(obj, name) 805 def whichmodule(func, funcname): function
|
/external/python/cpython3/Lib/ |
D | pickle.py | 302 def whichmodule(obj, name): function 949 module_name = whichmodule(obj, name)
|
/external/python/cpython2/Modules/ |
D | cPickle.c | 899 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.c | 1751 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/ |
D | 3.5.0a1.rst | 1921 Avoid RuntimeError in pickle.whichmodule() when sys.modules is mutated while
|
/external/python/cpython2/Misc/ |
D | HISTORY | 4585 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/ |
D | HISTORY | 1212 - 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.
|