/usr/lib/imh-scan/venv/lib/python3.13/site-packages/pluggy
NameSizeModeActions
__pycache__/-0755rm
py.typed00644editdlrm
_callers.py59910644editdlrm
_hooks.py252180644editdlrm
_manager.py202190644editdlrm
_result.py30980644editdlrm
_tracing.py20730644editdlrm
_version.py5110644editdlrm
_warnings.py8280644editdlrm
__init__.py8110644editdlrm
Edit: /usr/lib/imh-scan/venv/lib/python3.13/site-packages/pluggy/_warnings.py (828B)
from typing import final class PluggyWarning(UserWarning): """Base class for all warnings emitted by pluggy.""" __module__ = "pluggy" @final class PluggyTeardownRaisedWarning(PluggyWarning): """A plugin raised an exception during an :ref:`old-style hookwrapper ` teardown. Such exceptions are not handled by pluggy, and may cause subsequent teardowns to be executed at unexpected times, or be skipped entirely. This is an issue in the plugin implementation. If the exception is unintended, fix the underlying cause. If the exception is intended, switch to :ref:`new-style hook wrappers `, or use :func:`result.force_exception() ` to set the exception instead of raising. """ __module__ = "pluggy"