(value: bytes)
| 178 | |
| 179 | |
| 180 | def normalize_line_endings(value: bytes) -> bytes: |
| 181 | return value.replace(os.linesep.encode("utf-8"), b"\n") |
| 182 | |
| 183 | |
| 184 | def test_build_sdist(monkeypatch, tmpdir): |
nothing calls this directly
no outgoing calls
no test coverage detected