Searched defs:join_header_words (Results 1 - 3 of 3) sorted by relevance

/external/python/cpython2/Lib/test/
H A Dtest_cookielib.py156 from cookielib import join_header_words namespace
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 namespace
226 res = join_header_words(input)
/external/python/cpython2/Lib/
H A Dcookielib.py412 def join_header_words(lists): function
418 >>> join_header_words([[("text/plain", None), ("charset", "iso-8859/1")]])
420 >>> join_header_words([[("text/plain", None)], [("charset", "iso-8859/1")]])
/external/python/cpython3/Lib/http/
H A Dcookiejar.py423 def join_header_words(lists): function
429 >>> join_header_words([[("text/plain", None), ("charset", "iso-8859-1")]])
431 >>> join_header_words([[("text/plain", None)], [("charset", "iso-8859-1")]])
1839 return join_header_words([h])

Completed in 179 milliseconds