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 steve.dower
Recipients abarry, eryksun, paul.moore, steve.dower, tim.golden, vstinner, zach.ware
Date 2016-07-01.05:27:58
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1467350878.78.0.319910914058.issue27423@psf.upfronthosting.co.za>
In-reply-to
Content
The warnings are expected - Python has to be able to handle arbitrarily bad parameters/use without crashing, while the CRT assumes that bugs belong to the direct caller who needs to fix them. As a result, it will assert and terminate for blatantly incorrect operations.

A while back we discussed suppressing these warnings by default to stop people worrying, while leaving them enabled for the build bots where those analysing the results are more likely to be aware of the intricacies.

Of course, if the assert dialog is actually showing, we have an issue. If it's only the printed warning then it's expected.
History
Date User Action Args
2016-07-01 05:27:58steve.dowersetrecipients: + steve.dower, paul.moore, vstinner, tim.golden, zach.ware, eryksun, abarry
2016-07-01 05:27:58steve.dowersetmessageid: <1467350878.78.0.319910914058.issue27423@psf.upfronthosting.co.za>
2016-07-01 05:27:58steve.dowerlinkissue27423 messages
2016-07-01 05:27:58steve.dowercreate