Martin v. Löwis <mar...@v.loewis.de> added the comment:

> The syntax would be this:
> 
> #if defined(_MSC_VER)
> #  pragma warning(push)
>    /* Disable warnings for this file, see
>    http://www.sqlite.org/faq.html#q17 why we don't care for them. */
> #  pragma warning(disable: 4244)
> #  pragma warning(disable: 4018)
> #endif

I'd rather disable them in the project, instead of putting it into the
source code. I'd also just disable *all* warnings, since we wouldn't
fix any of them.

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue5134>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to