|
|||||||||||
Python Error Code: KeyboardInterruptError Description: Raised when the user hits the interrupt key (normally Control-C or Delete). During execution, a check for interrupts is made regularly. Interrupts typed when a built-in function input() or raw_input() is waiting for input also raise this exception. The exception inherits from BaseException so as to not be accidentally caught by code that catches Exception and thus prevent the interpreter from exiting. Changed in version 2.5: Changed to inherit from BaseException.Comments:
SOURCE: Python Documentation ONLINE RESOURCES: Python Programming Language Official Website Python Downloads Python Mailing Lists, Newsgroups, and Web Forums |
|||||||||||