blob: 2298a2495294600db41d5eefbaae212de8b0e9be (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
"""Object-oriented filesystem paths.
This module provides classes to represent abstract paths and concrete
paths with operations that have semantics appropriate for different
operating systems.
"""
from ._os import *
from ._local import *
__all__ = (_os.__all__ +
_local.__all__)
|