8 Aug
2012
8 Aug
'12
3:14 p.m.
On Wed, Aug 8, 2012 at 3:52 AM,
Interestingly I added this
import warnings warnings.filterwarnings("ignore", category=DeprecationWarning)
and it did not make the warnings go away… even though I tried both where I import matplotlib and also in the top of the main() routine.
That seems odd to me - any ideas?
I guess my assumption about the inheritance of wxPyDeprecationWarning was incorrect - at any rate, this seems to work: warnings.filterwarnings("ignore", category=wx.wxPyDeprecationWarning) -Nat