Searched refs:interact_netscape (Results 1 – 4 of 4) sorted by relevance
/external/python/cpython3/Lib/test/ |
D | test_http_cookiejar.py | 299 def interact_netscape(cookiejar, url, *set_cookie_hdrs): function 320 interact_netscape(c, "http://www.acme.com/", 'boo') 442 interact_netscape(c, "http://www.acme.com/", 'eggs') 443 interact_netscape(c, "http://www.acme.com/", '"spam"; path=/foo/') 466 self.assertEqual(interact_netscape(c, "http://www.acme.com/foo/"), 486 interact_netscape(c, "http://www.example.com/", "ni=ni; Version=1") 502 interact_netscape(c, "http://www.acme.com/", 504 interact_netscape(c, "http://www.acme.com/", 'ni=ni; port=80,8080') 505 interact_netscape(c, "http://www.acme.com:80/", 'nini=ni') 506 interact_netscape(c, "http://www.acme.com:80/", 'foo=bar; expires=') [all …]
|
D | test_urllib2.py | 1272 from test.test_http_cookiejar import interact_netscape 1275 interact_netscape(cj, "http://www.example.com/", "spam=eggs")
|
/external/python/cpython2/Lib/test/ |
D | test_cookielib.py | 249 def interact_netscape(cookiejar, url, *set_cookie_hdrs): function 272 interact_netscape(c, "http://www.acme.com/", 'boo') 394 interact_netscape(c, "http://www.acme.com/", 'eggs') 395 interact_netscape(c, "http://www.acme.com/", '"spam"; path=/foo/') 418 self.assertEqual(interact_netscape(c, "http://www.acme.com/foo/"), 440 interact_netscape(c, "http://www.example.com/", "ni=ni; Version=1") 458 interact_netscape(c, "http://www.acme.com/", 460 interact_netscape(c, "http://www.acme.com/", 'ni=ni; port=80,8080') 461 interact_netscape(c, "http://www.acme.com:80/", 'nini=ni') 462 interact_netscape(c, "http://www.acme.com:80/", 'foo=bar; expires=') [all …]
|
D | test_urllib2.py | 1020 from test.test_cookielib import interact_netscape 1023 interact_netscape(cj, "http://www.example.com/", "spam=eggs")
|