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 bkramer
Recipients bkramer
Date 2009-06-28.09:34:35
SpamBayes Score 0.0055905306
Marked as misclassified No
Message-id <1246181677.92.0.360590014109.issue6355@psf.upfronthosting.co.za>
In-reply-to
Content
Objects/capsule.c contains the following code:

if (!name1 || !name2) {
    /* they're only the same if they're both NULL. */
    return name2 == name2;
}

The result of this comparison will always be true. The comment says it 
should be 'name1 == name2'.
History
Date User Action Args
2009-06-28 09:34:38bkramersetrecipients: + bkramer
2009-06-28 09:34:37bkramersetmessageid: <1246181677.92.0.360590014109.issue6355@psf.upfronthosting.co.za>
2009-06-28 09:34:36bkramerlinkissue6355 messages
2009-06-28 09:34:35bkramercreate