Hi all,
In the following code input_alert() never throws an exception. From the documentation I would have expected that a KeyboardInterrupt exception is thrown when the dialog is canceled.
import console
console.clear()
try:
console.input_alert('test')
except:
print('exception')
Is this an error?
Steffen