(text)
| 457 | return ", ".join(headers) |
| 458 | |
| 459 | def strip_quotes(text): |
| 460 | if text.startswith('"'): |
| 461 | text = text[1:] |
| 462 | if text.endswith('"'): |
| 463 | text = text[:-1] |
| 464 | return text |
| 465 | |
| 466 | def parse_ns_headers(ns_headers): |
| 467 | """Ad-hoc parser for Netscape protocol cookie-attributes. |
no test coverage detected