Home
last modified time | relevance | path

Searched refs:pickle_function (Results 1 – 2 of 2) sorted by relevance

/external/python/cpython2/Lib/
Dcopy_reg.py14 def pickle(ob_type, pickle_function, constructor_ob=None): argument
18 if not hasattr(pickle_function, '__call__'):
20 dispatch_table[ob_type] = pickle_function
/external/python/cpython3/Lib/
Dcopyreg.py12 def pickle(ob_type, pickle_function, constructor_ob=None): argument
13 if not callable(pickle_function):
15 dispatch_table[ob_type] = pickle_function