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-08-11 22:43:18 +01:00
|
|
|
from pathlib._local import *
|
2023-12-09 15:07:40 +00:00
|
|
|
|
2024-12-12 17:39:24 +00:00
|
|
|
__all__ = _local.__all__
|