Nick Coghlan added the comment:

Because context managers are closer to try/finally blocks than they are to 
exception handling, the class-based implementation for the contextlib.suppress 
API uses issubclass rather than emulating the CPython exception handling 
semantics: http://hg.python.org/cpython/file/09153a9a3bb9/Lib/contextlib.py#l202

The exception checking in the unittest module is similarly based on issubclass: 
http://hg.python.org/cpython/file/09153a9a3bb9/Lib/unittest/case.py#l129

I'm planning to add the catch() and ExitLabel() context managers to contextlib2 
this evening, and those too will be based on issubclass().

Perhaps as a near term thing, we should put an "implementation detail" notice 
somewhere in the language reference, pointing that it's the code using 
issubclass that is considered correct here, and CPython's exception handling 
that is considered out of line?

----------

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue12029>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to