• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1"""Object-oriented filesystem paths.
2
3This module provides classes to represent abstract paths and concrete
4paths with operations that have semantics appropriate for different
5operating systems.
6"""
7
8from ._abc import *
9from ._local import *
10
11__all__ = (_abc.__all__ +
12           _local.__all__)
13