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

  /external/python/cpython3/Lib/
_compat_pickle.py 167 REVERSE_NAME_MAPPING = dict((v, k) for (k, v) in NAME_MAPPING.items())
168 assert len(REVERSE_NAME_MAPPING) == len(NAME_MAPPING)
204 REVERSE_NAME_MAPPING.update({
244 REVERSE_NAME_MAPPING[('builtins', excname)] = ('exceptions', 'OSError')
251 REVERSE_NAME_MAPPING[('builtins', excname)] = ('exceptions', 'ImportError')
pickle.py     [all...]
  /external/python/cpython3/Lib/test/
test_pickle.py 2 NAME_MAPPING, REVERSE_NAME_MAPPING)
275 if (module, name) in REVERSE_NAME_MAPPING:
276 module, name = REVERSE_NAME_MAPPING[(module, name)]
313 modules |= {module for module, name in REVERSE_NAME_MAPPING}
333 for (module3, name3), (module2, name2) in REVERSE_NAME_MAPPING.items():
362 for (m3, n3), (m2, n2) in REVERSE_NAME_MAPPING.items():

Completed in 112 milliseconds