Test the If-Unmodified-Since comparison as defined in RFC 9110 Section 13.1.4.
(last_modified, if_unmodified_since)
| 234 | |
| 235 | |
| 236 | def _if_unmodified_since_passes(last_modified, if_unmodified_since): |
| 237 | """ |
| 238 | Test the If-Unmodified-Since comparison as defined in RFC 9110 Section |
| 239 | 13.1.4. |
| 240 | """ |
| 241 | return last_modified and last_modified <= if_unmodified_since |
| 242 | |
| 243 | |
| 244 | def _if_none_match_passes(target_etag, etags): |
no outgoing calls
no test coverage detected