Searched refs:join_header_words (Results 1 – 5 of 5) sorted by relevance
/external/python/cpython2/Lib/ |
D | _LWPCookieJar.py | 17 join_header_words, split_header_words, 47 return join_header_words([h])
|
D | cookielib.py | 412 def join_header_words(lists): function
|
/external/python/cpython2/Lib/test/ |
D | test_cookielib.py | 156 from cookielib import join_header_words 158 joined = join_header_words([[("foo", None), ("bar", "baz")]]) 161 self.assertEqual(join_header_words([[]]), "") 200 from cookielib import split_header_words, join_header_words 226 res = join_header_words(input)
|
/external/python/cpython3/Lib/test/ |
D | test_http_cookiejar.py | 11 parse_ns_headers, join_header_words, split_header_words, Cookie, 213 joined = join_header_words([[("foo", None), ("bar", "baz")]]) 216 self.assertEqual(join_header_words([[]]), "") 277 res = join_header_words(input)
|
/external/python/cpython3/Lib/http/ |
D | cookiejar.py | 420 def join_header_words(lists): function 1849 return join_header_words([h])
|