On Tue, Nov 10, 2009 at 9:58 PM, Guido van Rossum <gu...@python.org> wrote:
> On Tue, Nov 10, 2009 at 3:37 PM, geremy condra <debat...@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
_______________________________________________
stdlib-sig mailing list
stdlib-sig@python.org
http://mail.python.org/mailman/listinfo/stdlib-sig

Reply via email to