Skip to content
Advertisement

Ignore warnings whose messages contain a specific string

I don’t want warnings whose message contains “property” to be printed. I know that I can ignore a warning by specifying its whole message with:

JavaScript

I need something like:

JavaScript

I also know that I can disable warnings for a specific part of the code with:

JavaScript

Advertisement

Answer

The message parameter of filterwarnings is a regular expression, therefore you should be able to use

JavaScript

Where .* matches zero or more occurrences of any character.

User contributions licensed under: CC BY-SA
7 People found this is helpful
Advertisement