(cls, name)
| 6666 | |
| 6667 | @classmethod |
| 6668 | def fromname(cls, name): |
| 6669 | path = os.path.join(cls.zoneroot, name) |
| 6670 | with open(path, 'rb') as f: |
| 6671 | return cls.fromfile(f) |
| 6672 | |
| 6673 | EPOCHORDINAL = date(1970, 1, 1).toordinal() |
| 6674 |
no test coverage detected