tags:

views:

29

answers:

1

Is there a way to tell pylint that it must show warning message when it see user-defined deprecation warning?

I've tried warnings.warn, DeprecationWarning - but pylint ignores them.

+1  A: 

Since warnings.warn &c are intended to happen at runtime, Pylint by default doesn't see them as anything strange. To change that I think you need to follow the (advanced and scarce) docs for writing your own checker, with which you can emit warnings on any characteristics of the sources (either the raw ones or the AST-compiled level thereof).

Alex Martelli