You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Added signal.DisableInterrupt. This macro allows disabling SIGINT (Ctrl+C) for group of commands.
fromxontrib.macro.signalimportDisableInterruptechostartwith! DisableInterrupt:
echo'sleep start'sleep10echo'sleep end'echofinish# start# sleep start# [Press Ctrl+C]# KeyboardInterrupt will be raised at the end of current transaction.# sleep end# Exception KeyboardInterrupt: KeyboardInterrupt was received during transaction.