Home
last modified time | relevance | path

Searched refs:_imp (Results 1 – 16 of 16) sorted by relevance

/external/python/cpython3/Lib/importlib/
D_bootstrap.py163 _imp.acquire_lock()
177 _imp.acquire_lock()
185 _imp.release_lock()
189 _imp.release_lock()
244 if not _imp.is_frozen(fullname):
723 if _imp.is_builtin(fullname):
746 return _call_with_frames_removed(_imp.create_builtin, spec)
751 _call_with_frames_removed(_imp.exec_builtin, module)
794 if _imp.is_frozen(fullname):
806 return cls if _imp.is_frozen(fullname) else None
[all …]
D_bootstrap_external.py529 _imp._fix_co_filename(code, source_path)
832 if (_imp.check_hash_based_pycs != 'never' and
834 _imp.check_hash_based_pycs == 'always')):
836 source_hash = _imp.source_hash(
866 source_hash = _imp.source_hash(source_bytes)
1043 _imp.create_dynamic, spec)
1050 _bootstrap._call_with_frames_removed(_imp.exec_dynamic, module)
1487 extensions = ExtensionFileLoader, _imp.extension_suffixes()
1500 global sys, _imp, _bootstrap
1503 _imp = _bootstrap._imp
[all …]
D__init__.py12 import _imp # Just the builtin component, NOT the full Python module
19 _bootstrap._setup(sys, _imp)
Dmachinery.py3 import _imp
Dutil.py15 import _imp
24 return _imp.source_hash(_RAW_MAGIC_NUMBER, source_bytes)
/external/curl/lib/
DCMakeLists.txt102 …# Add "_imp" as a suffix before the extension to avoid conflicting with the statically linked "lib…
103 set_target_properties(${LIB_NAME} PROPERTIES IMPORT_SUFFIX "_imp.lib")
DMakefile.Watcom227 @%append $(LINK_ARG) option implib=$(LIBNAME)_imp.lib
/external/python/cpython3/Lib/
Dimp.py9 from _imp import (lock_held, acquire_lock, release_lock,
14 from _imp import create_dynamic
/external/python/cpython3/Lib/test/
Dtest_imp.py14 import _imp
336 self.assertEqual(_imp.source_hash(42, b'hi'), b'\xc6\xe7Z\r\x03:}\xab')
337 self.assertEqual(_imp.source_hash(43, b'hi'), b'\x85\x9765\xf8\x9a\x8b9')
Dtest_fork1.py4 import _imp as imp
Dtest_threaded_import.py8 import _imp as imp
/external/python/cpython3/Modules/
Dconfig.c.in42 {"_imp", PyInit__imp},
/external/python/cpython3/Lib/distutils/
Dsysconfig.py12 import _imp
454 g['EXT_SUFFIX'] = _imp.extension_suffixes()[0]
/external/curl/src/
DMakefile.Watcom190 @%append $(LINK_ARG) library ../lib/$(LIBNAME)_imp.lib
/external/python/setuptools/pkg_resources/
D__init__.py45 import _imp
48 import imp as _imp namespace
2150 _imp.acquire_lock()
2177 _imp.release_lock()
2182 _imp.acquire_lock()
2189 _imp.release_lock()
/external/python/cpython3/Misc/
DHISTORY5232 - Issue #16880: Do not assume _imp.load_dynamic() is defined in the imp module.
7886 - Issue #13959: Add imp.py and rename the built-in module to _imp, allowing for