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

  /external/python/cpython3/Lib/
_compat_pickle.py 165 REVERSE_IMPORT_MAPPING = dict((v, k) for (k, v) in IMPORT_MAPPING.items())
166 assert len(REVERSE_IMPORT_MAPPING) == len(IMPORT_MAPPING)
189 REVERSE_IMPORT_MAPPING.update({
pickle.py     [all...]
  /external/python/cpython3/Lib/test/
test_pickle.py 1 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)

Completed in 521 milliseconds