Python disables MSCRT assertions for debug mode during the initialization of exceptions module when it is built in debug mode. At least from the source code, I can see Python 2.6.5 doing this for _MSC_VER >= 1400 i.e. Visual C++ 2005. Does anyone know why?

link|improve this question
feedback

1 Answer

up vote 2 down vote accepted

See this thread on the bug tracker.

link|improve this answer
These comments seem to be explaining why various complex verifications are performed, not why assertions are disabled. Disabling assertions when building Python wouldn't disable these, anyway: the above are assertions in the C runtime itself, not in code being built for Python. – Glenn Maynard Oct 21 '10 at 8:11
That makes sense, searching around the bug tracker turns up a thread explaining this issue. – ars Oct 21 '10 at 8:23
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.