Home
last modified time | relevance | path

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

/external/python/cpython2/Lib/
Dpickle.py745 module = whichmodule(obj, name)
805 def whichmodule(func, funcname): function
/external/python/cpython2/Modules/
DcPickle.c889 whichmodule(PyObject *global, PyObject *global_name) in whichmodule() function
2093 if (!( module = whichmodule(class, name))) in save_inst()
2194 if (!( module = whichmodule(args, global_name))) in save_global()
/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.