(self, cookie, request)
| 994 | return True |
| 995 | |
| 996 | def set_ok_name(self, cookie, request): |
| 997 | # Try and stop servers setting V0 cookies designed to hack other |
| 998 | # servers that know both V0 and V1 protocols. |
| 999 | if (cookie.version == 0 and self.strict_ns_set_initial_dollar and |
| 1000 | cookie.name.startswith("$")): |
| 1001 | _debug(" illegal name (starts with '$'): '%s'", cookie.name) |
| 1002 | return False |
| 1003 | return True |
| 1004 | |
| 1005 | def set_ok_path(self, cookie, request): |
| 1006 | if cookie.path_specified: |
nothing calls this directly
no test coverage detected