(key: str)
| 77 | |
| 78 | |
| 79 | def get_zoneinfo(key: str) -> bytes: |
| 80 | path = get_zoneinfo_path() |
| 81 | |
| 82 | with open(path / key, "rb") as f: |
| 83 | return f.read() |
| 84 | |
| 85 | |
| 86 | def encode_compressed(data: bytes) -> typing.List[str]: |
no test coverage detected
searching dependent graphs…