2023-12-09 15:07:40 +00:00
|
|
|
"""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.
|
|
|
|
"""
|
|
|
|
|
2024-07-03 04:30:29 +01:00
|
|
|
from ._os import *
|
2024-05-05 20:57:19 +01:00
|
|
|
from ._local import *
|
2023-12-09 15:07:40 +00:00
|
|
|
|
2024-07-03 04:30:29 +01:00
|
|
|
__all__ = (_os.__all__ +
|
2024-05-05 20:57:19 +01:00
|
|
|
_local.__all__)
|