Home
last modified time | relevance | path

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

/external/python/cpython3/Lib/
D_compat_pickle.py165 REVERSE_IMPORT_MAPPING = dict((v, k) for (k, v) in IMPORT_MAPPING.items()) variable
166 assert len(REVERSE_IMPORT_MAPPING) == len(IMPORT_MAPPING)
189 REVERSE_IMPORT_MAPPING.update({
Dpickle.py991 r_import_mapping = _compat_pickle.REVERSE_IMPORT_MAPPING
/external/python/cpython3/Lib/test/
Dtest_pickle.py1 from _compat_pickle import (IMPORT_MAPPING, REVERSE_IMPORT_MAPPING,
346 elif module in REVERSE_IMPORT_MAPPING:
347 module = REVERSE_IMPORT_MAPPING[module]
381 modules |= set(REVERSE_IMPORT_MAPPING)
391 for module3, module2 in REVERSE_IMPORT_MAPPING.items():
430 REVERSE_IMPORT_MAPPING.get(module3, None) != module2):
437 module = REVERSE_IMPORT_MAPPING.get(module3, module3)