--- WebOb-0.9.2/tests/test_response.txt.old 2008-06-27 02:03:13.000000000 -0400 +++ WebOb-0.9.2/tests/test_response.txt 2008-06-27 02:07:56.000000000 -0400 @@ -62,15 +62,15 @@ Cookie handling is done through methods: >>> res.set_cookie('test', 'value') >>> res.headers['set-cookie'] - 'test=value; Path=/;' + 'test=value; Path=/' >>> res.set_cookie('test2', 'value2', max_age=10000) >>> res.headers['set-cookie'] # We only see the last header - 'test2=value2; expires="... GMT"; Max-Age=10000; Path=/;' + 'test2=value2; expires="... GMT"; Max-Age=10000; Path=/' >>> res.headers.getall('set-cookie') - ['test=value; Path=/;', 'test2=value2; expires="... GMT"; Max-Age=10000; Path=/;'] + ['test=value; Path=/', 'test2=value2; expires="... GMT"; Max-Age=10000; Path=/'] >>> res.unset_cookie('test') >>> res.headers.getall('set-cookie') - ['test2=value2; expires="... GMT"; Max-Age=10000; Path=/;'] + ['test2=value2; expires="... GMT"; Max-Age=10000; Path=/'] Most headers are available in a parsed getter/setter form through properties: