15.12.2014, 02:12, Stefan van der Walt kirjoitti: > Since the topic of context managers recently came up, what do you think > of adding a context manager for seterr? > > with np.seterr(divide='ignore'): > frac = num / denom
There's this:
with np.errstate(divide='ignore'):
...
_______________________________________________
NumPy-Discussion mailing list
[email protected]
http://mail.scipy.org/mailman/listinfo/numpy-discussion
