Python Mark fonctionne comme aucun retour

from typing import NoReturn

def stop() -> NoReturn:
    raise RuntimeError('no way')
Yossimal