Comment 2 for bug 1169217

Revision history for this message
Luc Saffre (luc-saffre) wrote :

I found more places where this setting CATCH_ERRORS should be used in the same way to prevent catching the exception.
Here is a new zip file with the version how I use them.
Sorry I didn't manage to produce a patch, but here is at least a list of these places:

$ ls *.py | xargs grep -n CATCH_ERRORS
actions.py:33:CATCH_ERRORS = False # 20130415
actions.py:74: if not CATCH_ERRORS: raise # 20130415
actions.py:90: if not CATCH_ERRORS: raise # 20130421
actions.py:95: if not CATCH_ERRORS: raise # 20130415
buffers.py:27: NullAction, CATCH_ERRORS
buffers.py:199: if not CATCH_ERRORS: raise
buffers.py:577: if not CATCH_ERRORS: raise

Luc