(self)
| 191 | """) |
| 192 | |
| 193 | def test_extended_encode(self): |
| 194 | # Issue 9824: some browsers don't follow the standard; we now |
| 195 | # encode , and ; to keep them from tripping up. |
| 196 | C = cookies.SimpleCookie() |
| 197 | C['val'] = "some,funky;stuff" |
| 198 | self.assertEqual(C.output(['val']), |
| 199 | 'Set-Cookie: val="some\\054funky\\073stuff"') |
| 200 | |
| 201 | def test_special_attrs(self): |
| 202 | # 'expires' |
nothing calls this directly
no test coverage detected