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