Make warning an exception?

DL Neil PythonList at danceswithmice.info
Fri Dec 6 16:16:13 EST 2019


On 7/12/19 9:58 AM, Israel Brewster wrote:
> I was running some code and I saw this pop up in the console:
> 
> 2019-12-06 11:53:54.087 Python[85524:39651849] WARNING: nextEventMatchingMask should only be called from the Main Thread! This will throw an exception in the future.
> 
> The only problem is, I have no idea what is generating that warning - I never call nextEventMatchingMask directly, so it must be getting called from one of the libraries I’m calling. Is there some way I can force python to throw an exception now, so my debugger can catch it and let me know where in my code the originating call is? I’ve tried stepping through the obvious options, with no luck so far.


We are able to "filter" errors, including turning warnings into 
full-bore errors. Of possible use: 
https://docs.python.org/3/library/warnings.html

-- 
Regards =dn


More information about the Python-list mailing list