(self, cookie, request)
| 1122 | return True |
| 1123 | |
| 1124 | def return_ok_verifiability(self, cookie, request): |
| 1125 | if request.unverifiable and is_third_party(request): |
| 1126 | if cookie.version > 0 and self.strict_rfc2965_unverifiable: |
| 1127 | _debug(" third-party RFC 2965 cookie during unverifiable " |
| 1128 | "transaction") |
| 1129 | return False |
| 1130 | elif cookie.version == 0 and self.strict_ns_unverifiable: |
| 1131 | _debug(" third-party Netscape cookie during unverifiable " |
| 1132 | "transaction") |
| 1133 | return False |
| 1134 | return True |
| 1135 | |
| 1136 | def return_ok_secure(self, cookie, request): |
| 1137 | if cookie.secure and request.type not in self.secure_protocols: |
nothing calls this directly
no test coverage detected