On 11.04.15 10:11, Steven D'Aprano wrote:
Anyway, in modern Python (2.6 onwards), now that string exceptions are gone,
you can supply something to catch everything. Or nothing, for that matter:

BaseException  # catch everything

Not everything.

>>> class A: pass
...
>>> try: raise A
... except BaseException: pass
...
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
__main__.A: <__main__.A instance at 0xb707982c>


--
https://mail.python.org/mailman/listinfo/python-list

Reply via email to