HomeSort by relevance Sort by last modified time
    Searched refs:NAME_MAPPING (Results 1 - 3 of 3) sorted by null

  /external/python/cpython3/Lib/
_compat_pickle.py 57 NAME_MAPPING = {
152 NAME_MAPPING[("exceptions", excname)] = ("builtins", excname)
162 NAME_MAPPING[("multiprocessing", excname)] = ("multiprocessing.context", excname)
167 REVERSE_NAME_MAPPING = dict((v, k) for (k, v) in NAME_MAPPING.items())
168 assert len(REVERSE_NAME_MAPPING) == len(NAME_MAPPING)
197 NAME_MAPPING.update({
pickle.py     [all...]
  /external/python/cpython3/Lib/test/
test_pickle.py 2 NAME_MAPPING, REVERSE_NAME_MAPPING)
337 if (module, name) in NAME_MAPPING:
338 module, name = NAME_MAPPING[(module, name)]
383 modules |= {module for module, name in NAME_MAPPING.values()}
442 for (module2, name2), (module3, name3) in NAME_MAPPING.items():

Completed in 427 milliseconds