Home
last modified time | relevance | path

Searched refs:IMPORT_MAPPING (Results 1 - 3 of 3) sorted by relevance

/third_party/python/Lib/
H A D_compat_pickle.py8 IMPORT_MAPPING = { variable
165 REVERSE_IMPORT_MAPPING = dict((v, k) for (k, v) in IMPORT_MAPPING.items())
166 assert len(REVERSE_IMPORT_MAPPING) == len(IMPORT_MAPPING)
172 IMPORT_MAPPING.update({
H A Dpickle.py1578 elif module in _compat_pickle.IMPORT_MAPPING:
1579 module = _compat_pickle.IMPORT_MAPPING[module]
/third_party/python/Lib/test/
H A Dtest_pickle.py1 from _compat_pickle import (IMPORT_MAPPING, REVERSE_IMPORT_MAPPING, namespace
379 elif module in IMPORT_MAPPING:
380 module = IMPORT_MAPPING[module]
423 modules = set(IMPORT_MAPPING.values())
441 self.assertIn(module2, IMPORT_MAPPING)
442 self.assertEqual(IMPORT_MAPPING[module2], module3)
465 for module2, module3 in IMPORT_MAPPING.items():
481 module = IMPORT_MAPPING.get(module, module)

Completed in 5 milliseconds