(self)
| 1942 | |
| 1943 | @cached_property |
| 1944 | def _UTC_bytes(self): |
| 1945 | zone_file = self.zoneinfo_data.path_from_key("UTC") |
| 1946 | with open(zone_file, "rb") as f: |
| 1947 | return f.read() |
| 1948 | |
| 1949 | def touch_zone(self, key, tz_root): |
| 1950 | """Creates a valid TZif file at key under the zoneinfo root tz_root. |
nothing calls this directly
no test coverage detected