Home
last modified time | relevance | path

Searched refs:import_fresh_module (Results 1 – 5 of 5) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/json/tests/
D__init__.py10 cjson = test_support.import_fresh_module('json', fresh=['_json'])
11 pyjson = test_support.import_fresh_module('json', blocked=['_json'])
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/json/tests/
D__init__.py10 cjson = test_support.import_fresh_module('json', fresh=['_json'])
11 pyjson = test_support.import_fresh_module('json', blocked=['_json'])
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
Dtest_heapq.py9 py_heapq = test_support.import_fresh_module('heapq', blocked=['_heapq'])
10 c_heapq = test_support.import_fresh_module('heapq', fresh=['_heapq'])
Dtest_warnings.py15 py_warnings = test_support.import_fresh_module('warnings', blocked=['_warnings'])
16 c_warnings = test_support.import_fresh_module('warnings', fresh=['_warnings'])
Dtest_support.py110 def import_fresh_module(name, fresh=(), blocked=(), deprecated=False): function