(self)
| 169 | """) |
| 170 | |
| 171 | def test_extended_encode(self): |
| 172 | # Issue 9824: some browsers don't follow the standard; we now |
| 173 | # encode , and ; to keep them from tripping up. |
| 174 | C = cookies.SimpleCookie() |
| 175 | C['val'] = "some,funky;stuff" |
| 176 | self.assertEqual(C.output(['val']), |
| 177 | 'Set-Cookie: val="some\\054funky\\073stuff"') |
| 178 | |
| 179 | def test_special_attrs(self): |
| 180 | # 'expires' |
nothing calls this directly
no test coverage detected