This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author loewis
Recipients amaury.forgeotdarc, eckhardt, ghaering, loewis, rhettinger
Date 2009-02-03.18:53:32
SpamBayes Score 5.9396167e-05
Marked as misclassified No
Message-id <498892AA.70200@v.loewis.de>
In-reply-to <1233661010.54.0.375947573872.issue5134@psf.upfronthosting.co.za>
Content
> 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.
History
Date User Action Args
2009-02-03 18:53:34loewissetrecipients: + loewis, rhettinger, ghaering, amaury.forgeotdarc, eckhardt
2009-02-03 18:53:32loewislinkissue5134 messages
2009-02-03 18:53:32loewiscreate