[issue5275] BaseCookie.load doesn't create Morsel objects for mappings

2009-09-04 Thread Georg Brandl
Georg Brandl added the comment: Thanks, fixed in r74647. -- nosy: +georg.brandl resolution: -> fixed status: open -> closed ___ Python tracker ___ __

[issue5275] BaseCookie.load doesn't create Morsel objects for mappings

2009-02-15 Thread Mark Florisson
New submission from Mark Florisson : 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