/opt/imh-python/lib/python3.9/site-packages/executing
NameSizeModeActions
__pycache__/-0755rm
executing.py422260644editdlrm
py.typed00644editdlrm
version.py210644editdlrm
_exceptions.py5680644editdlrm
_position_node_finder.py347010644editdlrm
_pytest_utils.py3540644editdlrm
__init__.py8310644editdlrm
Edit: /opt/imh-python/lib/python3.9/site-packages/executing/_exceptions.py (568B)
class KnownIssue(Exception): """ Raised in case of an known problem. Mostly because of cpython bugs. Executing.node gets set to None in this case. """ pass class VerifierFailure(Exception): """ Thrown for an unexpected mapping from instruction to ast node Executing.node gets set to None in this case. """ def __init__(self, title, node, instruction): # type: (object, object, object) -> None self.node = node self.instruction = instruction super().__init__(title) # type: ignore[call-arg]