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 Simon.Blanchard
Recipients Simon.Blanchard, r.david.murray
Date 2012-10-31.04:28:53
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1351657734.2.0.391733618349.issue16362@psf.upfronthosting.co.za>
In-reply-to
Content
I have a real world example. Using Apache, mod_wsgi and Django. Given this in the META dict:

 'HTTP_COOKIE': 'yaean_djsession=23ab7bf8b260cbb2f2bc80b1c1fd98fa, yaean_yasession=ff2a3030ee3f428f91c6f554a63b459c',

Django via the Python cookie api gives this:

COOKIES:{'yaean_djsession': '23ab7bf8b260cbb2f2bc80b1c1fd98fa,',
 'yaean_yasession': 'ff2a3030ee3f428f91c6f554a63b459c'},

Note the comma on the end of the cookie named yaean_djsession in COOKIES. It should not be there. In this case session lookup fails.
History
Date User Action Args
2012-10-31 04:28:54Simon.Blanchardsetrecipients: + Simon.Blanchard, r.david.murray
2012-10-31 04:28:54Simon.Blanchardsetmessageid: <1351657734.2.0.391733618349.issue16362@psf.upfronthosting.co.za>
2012-10-31 04:28:54Simon.Blanchardlinkissue16362 messages
2012-10-31 04:28:53Simon.Blanchardcreate