(href)
| 516 | s = MemoryStorage() |
| 517 | if flaky_etags: |
| 518 | def get(href): |
| 519 | old_etag, item = s.items[href] |
| 520 | etag = _random_string() |
| 521 | s.items[href] = etag, item |
| 522 | return item, etag |
| 523 | s.get = get |
| 524 | |
| 525 | if null_etag_on_upload: |
no test coverage detected