# test sys module's exit function
import sys
try:
sys.exit
except AttributeError:
print("SKIP")
raise SystemExit
except SystemExit as e:
print("SystemExit", e.args)
sys.exit()
sys.exit(42)