On 2019-04-17 21:20, DL Neil wrote:
> Do you bother with exception handling for import statements?

I often have to do something like this:

try:
    from settings import SITE_WAFER_DIAMETER
except ImportError:
    SITE_WAFER_DIAMETER = 300
-- 
https://mail.python.org/mailman/listinfo/python-list

Reply via email to