# coding: utf-8 # AUTO-GENERATED FILE -- DO NOT EDIT """ (Extremely) low-level import machinery bits as used by importlib and imp. """ __doc__ = '(Extremely) low-level import machinery bits as used by importlib and imp.' class __loader__(object): """ Meta path import for built-in modules. All methods are either class or static methods to avoid the need to instantiate the class. """ def find_module(self, cls, fullname, path): """ Find the built-in module. If 'path' is ever specified then the search is considered a failure. """ pass def get_code(self, fullname): """ Return None as built-in modules do not have code objects. """ pass def get_source(self, fullname): """ Return None as built-in modules do not have source code. """ pass def is_package(self, fullname): """ Return False as built-in modules are never packages. """ pass def load_module(self): """ Load a built-in module. """ pass def module_repr(self, cls, module): pass __name__ = '_imp' __package__ = None def _fix_co_filename(): pass def acquire_lock(): """ acquire_lock() -> None Acquires the interpreter's import lock for the current thread. This lock should be used by import hooks to ensure thread-safety when importing modules. On platforms without threads, this function does nothing. """ return None def extension_suffixes(): """ extension_suffixes() -> list of strings Returns the list of file suffixes used to identify extension modules. """ return [] def get_frozen_object(): pass def init_builtin(): pass def init_frozen(): pass def is_builtin(): pass def is_frozen(): pass def is_frozen_package(): pass def load_dynamic(): pass def lock_held(): """ lock_held() -> boolean Return True if the import lock is currently held, else False. On platforms without threads, return False. """ return None def release_lock(): """ release_lock() -> None Release the interpreter's import lock. On platforms without threads, this function does nothing. """ return None