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 kristjan.jonsson
Recipients kristjan.jonsson
Date 2008-07-16.13:44:25
SpamBayes Score 0.004970156
Marked as misclassified No
Message-id <[email protected]>
In-reply-to
Content
Purify complained about reading uninitialized memory in ast.c:752 of 
two bytes which corresponds to the type field.  Looking into this, line 
750 increments i without checking that there are in fact this many 
children.
If you add the line:
assert(i < NCH(n));
after line 750 you get an assertion failure when you run 
test_keywordonlyarg in the testsuite
History
Date User Action Args
2008-07-16 13:44:27kristjan.jonssonsetspambayes_score: 0.00497016 -> 0.004970156
recipients: + kristjan.jonsson
2008-07-16 13:44:27kristjan.jonssonsetspambayes_score: 0.00497016 -> 0.00497016
messageid: <[email protected]>
2008-07-16 13:44:26kristjan.jonssonlinkissue3377 messages
2008-07-16 13:44:26kristjan.jonssoncreate