Michael Goerz <[EMAIL PROTECTED]> writes: > when I try to catch ctrl+c with > > except KeyboardInterrupt: > > pychecker tells me > > Catching a non-Exception object (KeyboardInterrupt)
Looks like a pychecker bug. It might be confused by KeyboardInterrupt being derived not from Exception, but from BaseException. -- http://mail.python.org/mailman/listinfo/python-list