[stdlib-sig] standardizing the deprecation policy (and hownoisy they are)

geremy condra debatem1 at gmail.com
Wed Nov 11 04:10:00 CET 2009


On Tue, Nov 10, 2009 at 9:58 PM, Guido van Rossum <guido at python.org> wrote:
> On Tue, Nov 10, 2009 at 3:37 PM, geremy condra <debatem1 at gmail.com> wrote:
>> If its an absolute no-no that warnings be raised then blanket
>> suppress them.
>
> Read the subject line again. It's about deprecation warnings
> specifically -- not all warnings.
>
> This is my last post on the subject, I don't think I can be any
> clearer than I already have been.
>
> --
> --Guido van Rossum (python.org/~guido)
>

Then blanket suppress the deprecation warnings:

import warnings
warnings.simplefilter('ignore', DeprecationWarning)

Geremy Condra


More information about the stdlib-sig mailing list