Searched refs:whichmodule (Results 1 – 9 of 9) sorted by relevance
/external/python/cpython3/Misc/NEWS.d/ |
D | 3.9.1.rst | 73 We fixed an issue in `pickle.whichmodule` in which importing
|
D | 3.5.0a1.rst | 1921 Avoid RuntimeError in pickle.whichmodule() when sys.modules is mutated while
|
/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 | 335 def whichmodule(obj, name): function 1064 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 | 1907 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/ |
D | known.tsv | 1251 Modules/_pickle.c whichmodule PyId___module__ variable _Py_IDENTIFIER(__module__)
|
/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.
|