# coding: utf-8 # AUTO-GENERATED FILE -- DO NOT EDIT """ _warnings provides basic warning filtering support. It is a helper module to speed up interpreter start-up. """ __doc__ = """_warnings provides basic warning filtering support. It is a helper module to speed up interpreter start-up.""" 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. """ _ORIGIN = 'built-in' def create_module(self, spec): """ Create a built-in module """ pass def exec_module(self, module): """ Exec a built-in module """ pass def find_spec(self, fullname, path=None, target=None): 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, fullname): """ Load the specified module into sys.modules and return it. This method is deprecated. Use loader.exec_module() instead. """ pass __name__ = '_warnings' __package__ = '' __spec__ = None _defaultaction = 'default' def _filters_mutated(): pass _onceregistry = {} filters = [] def warn(): """ Issue a warning, or maybe ignore it or raise an exception. message Text of the warning message. category The Warning category subclass. Defaults to UserWarning. stacklevel How far up the call stack to make this warning appear. A value of 2 for example attributes the warning to the caller of the code calling warn(). source If supplied, the destroyed object which emitted a ResourceWarning skip_file_prefixes An optional tuple of module filename prefixes indicating frames to skip during stacklevel computations for stack frame attribution. """ pass def warn_explicit(): """ Issue a warning, or maybe ignore it or raise an exception. """ pass