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 AstraLuma
Recipients AstraLuma
Date 2008-02-29.20:07:48
SpamBayes Score 0.025495453
Marked as misclassified No
Message-id <1204315669.5.0.476777122389.issue2212@psf.upfronthosting.co.za>
In-reply-to
Content
The primary offender is in BaseCookie.load(), which uses the test:
    type(rawdata) == type("")
which should be:
    isinstance(rawdata, basestring)
History
Date User Action Args
2008-02-29 20:07:49AstraLumasetspambayes_score: 0.0254955 -> 0.025495453
recipients: + AstraLuma
2008-02-29 20:07:49AstraLumasetspambayes_score: 0.0254955 -> 0.0254955
messageid: <1204315669.5.0.476777122389.issue2212@psf.upfronthosting.co.za>
2008-02-29 20:07:48AstraLumalinkissue2212 messages
2008-02-29 20:07:48AstraLumacreate