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 eggy
Recipients eggy
Date 2009-02-15.22:49:49
SpamBayes Score 7.420491e-08
Marked as misclassified No
Message-id <1234738191.23.0.342275234869.issue5275@psf.upfronthosting.co.za>
In-reply-to
Content
The load method, which is also called from the initializer if input is
provided, doesn't create Morsel objects for things other than strs,
because it calls self.update(rawdata), which does not invoke the custom
__setitem__.

The documentation states that when rawdata is not a string, it must be a
dictionary and providing that will be equivalent to doing

for k, v in rawdata.items():
    cookie[k] = v

So that is what it should do :)
History
Date User Action Args
2009-02-15 22:49:51eggysetrecipients: + eggy
2009-02-15 22:49:51eggysetmessageid: <1234738191.23.0.342275234869.issue5275@psf.upfronthosting.co.za>
2009-02-15 22:49:50eggylinkissue5275 messages
2009-02-15 22:49:49eggycreate