Paul Rubin wrote: > I'd like to suggest adding a builtin abstract class to Python called > AsynchronousException, which would be a subclass of Exception. The > only asynchronous exception I can think of right now is > KeyboardInterrupt, so KeyboardInterrupt would become a subclass of > AsynchronousException instead of being a direct subclass of Exception.
PEP 348 addresses this by moving special exceptions out of the Exception hierarchy: http://www.python.org/peps/pep-0348.html </F> -- http://mail.python.org/mailman/listinfo/python-list