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 brett.cannon
Recipients ajaksu2, brett.cannon, dalcinl
Date 2008-08-22.04:08:19
SpamBayes Score 0.0014509003
Marked as misclassified No
Message-id <1219378100.43.0.586220488446.issue3639@psf.upfronthosting.co.za>
In-reply-to
Content
If you search for _PyUnicode_AsString() in Python/_warnings.c you will
find several places that assume that the proper measures have been taken
to make sure the object is a string. All of those places need to be
fixed so that if a string is not passed in then one is grabbed.

And the reason this turned out as a segfault is for a missing error
return value just before the strcmp() call.
History
Date User Action Args
2008-08-22 04:08:20brett.cannonsetrecipients: + brett.cannon, dalcinl, ajaksu2
2008-08-22 04:08:20brett.cannonsetmessageid: <1219378100.43.0.586220488446.issue3639@psf.upfronthosting.co.za>
2008-08-22 04:08:19brett.cannonlinkissue3639 messages
2008-08-22 04:08:19brett.cannoncreate