DEBSOURCES
Skip Quicknav
sources / trash-cli / 0.24.5.26-0.3 / tests / support / capture_exit_code.py
123456
def capture_exit_code(callable): try: callable() except SystemExit as e: return e.code return None