On 04/11/2012 12:12 AM, Arek wrote:
> Hi
> I developed wxpython application for windows. How can I suppress
> warning message.
> I compiled the application using py2exe. When the user exit the
> application, the warning message is sent to log file.
> C:\Python27\lib\site-packages\matplotlib\lines.py:49: RuntimeWarning:
> invalid value encountered in greater_equal
> candidates = (u>=0) & (u<=1)
> This is not the harmful warning in my application so I would like to
> keep it from popping up (send to log file)
> Regards,
> Arek
> --
> To unsubscribe, send email to wxPython-users+unsubscribe@googlegroups.com
> or visit http://groups.google.com/group/wxPython-users?hl=en
Arek,
The best, (only good), way to suppress a warning message is to fix the
problem that causes it.
Gadget/Steve