_path.py 68 B

12345
  1. from abc import ABCMeta
  2. class PathABC(metaclass=ABCMeta):
  3. ...