Message230354
Expected:
>>> import pickle
>>> from http.cookies import SimpleCookie
>>> pickle.loads(pickle.dumps(SimpleCookie('hi=there'),2))
<SimpleCookie: hi='there'>
# Actual
<SimpleCookie: hi='Set-Cookie: hi=there'>
Patch is based on the suggestion from Georg Brandl in #22758 (I added the "else" as the fix did not work without it). |
|
Date |
User |
Action |
Args |
2014-10-31 16:58:03 | Tim.Graham | set | recipients:
+ Tim.Graham, georg.brandl, berker.peksag |
2014-10-31 16:58:03 | Tim.Graham | set | messageid: <1414774683.47.0.0600315909548.issue22775@psf.upfronthosting.co.za> |
2014-10-31 16:58:03 | Tim.Graham | link | issue22775 messages |
2014-10-31 16:58:03 | Tim.Graham | create | |
|