OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:IMPORT_MAPPING
(Results
1 - 3
of
3
) sorted by null
/external/python/cpython3/Lib/
_compat_pickle.py
8
IMPORT_MAPPING
= {
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({
pickle.py
[
all
...]
/external/python/cpython3/Lib/test/
test_pickle.py
1
from _compat_pickle import (
IMPORT_MAPPING
, REVERSE_IMPORT_MAPPING,
339
elif module in
IMPORT_MAPPING
:
340
module =
IMPORT_MAPPING
[module]
380
modules = set(
IMPORT_MAPPING
.values())
398
self.assertIn(module2,
IMPORT_MAPPING
)
399
self.assertEqual(
IMPORT_MAPPING
[module2], module3)
422
for module2, module3 in
IMPORT_MAPPING
.items():
438
module =
IMPORT_MAPPING
.get(module, module)
Completed in 649 milliseconds